@@ -366,7 +366,6 @@ public function seeInSubmittedEmailChildrenBody(string $string, Email $email)
366
366
367
367
$ this ->assertGreaterThan (0 , count ($ message ->getChildren ()));
368
368
369
- /** @var \Swift_Mime_SimpleMimeEntity $child */
370
369
foreach ($ message ->getChildren () as $ child ) {
371
370
$ this ->assertContains ($ string , is_null ($ child ->getBody ()) ? '' : $ child ->getBody ());
372
371
}
@@ -385,7 +384,6 @@ public function dontSeeInSubmittedEmailChildrenBody(string $string, Email $email
385
384
386
385
/** @var Mail $message */
387
386
foreach ($ collectedMessages as $ message ) {
388
- /** @var \Swift_Mime_SimpleMimeEntity $child */
389
387
foreach ($ message ->getChildren () as $ child ) {
390
388
$ this ->assertNotContains ($ string , is_null ($ child ->getBody ()) ? '' : $ child ->getBody ());
391
389
}
@@ -418,7 +416,6 @@ public function amLoggedInAsFrontendUser(UserInterface $user, string $firewallNa
418
416
419
417
$ this ->pimcoreCore ->client ->getCookieJar ()->clear ();
420
418
$ this ->pimcoreCore ->client ->getCookieJar ()->set ($ cookie );
421
-
422
419
}
423
420
424
421
/**
@@ -443,16 +440,18 @@ public function amLoggedInAs($username)
443
440
return ;
444
441
}
445
442
446
- \Pimcore \Tool \Session::invalidate ();
447
443
\Pimcore \Tool \Session::useSession (function (AttributeBagInterface $ adminSession ) use ($ pimcoreUser ) {
444
+
445
+ \Pimcore \Tool \Session::invalidate ();
446
+
448
447
$ adminSession ->set ('user ' , $ pimcoreUser );
448
+ $ adminSession ->set ('csrfToken ' , self ::PIMCORE_ADMIN_CSRF_TOKEN_NAME );
449
449
});
450
450
451
451
$ cookie = new Cookie (\Pimcore \Tool \Session::getSessionName (), \Pimcore \Tool \Session::getSessionId ());
452
452
453
453
$ this ->pimcoreCore ->client ->getCookieJar ()->clear ();
454
454
$ this ->pimcoreCore ->client ->getCookieJar ()->set ($ cookie );
455
-
456
455
}
457
456
458
457
/**
0 commit comments