We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7377ce commit 32f29e3Copy full SHA for 32f29e3
test/csrfprotector_test.php
@@ -519,15 +519,15 @@ public function testMultipleInitializeException()
519
$_SERVER['REQUEST_METHOD'] = 'GET';
520
csrfProtector::init();
521
522
- $this->assertTrue(count(csrfProtector::$config) == 11);
+ $this->assertTrue(count(csrfProtector::$config) == 10);
523
try {
524
525
$this->fail("alreadyInitializedException not raised");
526
} catch (alreadyInitializedException $ex) {
527
// pass
528
$this->assertTrue(true);
529
} catch (Exception $ex) {
530
- $this->fail("exception other than alreadyInitializedException failed");
+ $this->fail("exception other than alreadyInitializedException failed");
531
}
532
533
0 commit comments