Skip to content

Commit

Permalink
fixup! IBX-6207: Requests containing front controller script causes s…
Browse files Browse the repository at this point in the history
…ession-not-found exception
  • Loading branch information
vidarl committed Aug 3, 2023
1 parent f6529a5 commit 5c91a54
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,12 @@ public function testOnSiteAccessMatchNewSessionName()

$this->listener->onSiteAccessMatch($event);
}

public function testOnSiteAccessMatchNoSession()
{
$request = new Request();

$event = new PostSiteAccessMatchEvent(new SiteAccess('test'), $request, HttpKernelInterface::MAIN_REQUEST);
$this->listener->onSiteAccessMatch($event);
}
}

0 comments on commit 5c91a54

Please sign in to comment.