Skip to content

Commit b70b5a1

Browse files
Merge branch '3.4' into 4.4
* 3.4: [Cache] fix catching auth errors Fix CS [FrameworkBundle] set default session.handler alias if handler_id is not provided Fix CS Readability update Fix checks for phpunit releases on Composer 2 (resolves #37601) [SCA] Minor fixes on tests
2 parents 6b8ba82 + 41e230a commit b70b5a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Profiler/FileProfilerStorageTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ public function testStoreTime()
205205

206206
$records = $this->storage->find('', '', 3, 'GET', $start, time() + 3 * 60);
207207
$this->assertCount(3, $records, '->find() returns all previously added records');
208-
$this->assertEquals($records[0]['token'], 'time_2', '->find() returns records ordered by time in descendant order');
209-
$this->assertEquals($records[1]['token'], 'time_1', '->find() returns records ordered by time in descendant order');
210-
$this->assertEquals($records[2]['token'], 'time_0', '->find() returns records ordered by time in descendant order');
208+
$this->assertEquals('time_2', $records[0]['token'], '->find() returns records ordered by time in descendant order');
209+
$this->assertEquals('time_1', $records[1]['token'], '->find() returns records ordered by time in descendant order');
210+
$this->assertEquals('time_0', $records[2]['token'], '->find() returns records ordered by time in descendant order');
211211

212212
$records = $this->storage->find('', '', 3, 'GET', $start, time() + 2 * 60);
213213
$this->assertCount(2, $records, '->find() should return only first two of the previously added records');

0 commit comments

Comments
 (0)