Update tst/Persistence/TrafficLimiterTest.php

Co-authored-by: rugk <rugk+git@posteo.de>
pull/890/head
El RIDO 2022-02-26 06:58:41 +01:00 committed by GitHub
parent 288cf3f005
commit 77153a9b49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class TrafficLimiterTest extends PHPUnit_Framework_TestCase
try {
$this->assertFalse(TrafficLimiter::canPass(), 'expected an exception');
} catch (Exception $e) {
$this->assertEquals($e->getMessage(), 'Please wait 4 seconds between each post.', 'request is to fast, invalid range');
$this->assertEquals($e->getMessage(), 'Please wait 4 seconds between each post.', 'request is too fast, invalid range');
}
$_SERVER['REMOTE_ADDR'] = 'foobar';
$this->assertTrue(TrafficLimiter::canPass(), 'non-IP address');