Skip to content

Commit c4913f1

Browse files
committed
Fix order of expected and actual params for assertSame()
1 parent 92760d1 commit c4913f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PsrLogAdapterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function testLog(): void
5454
[LogLevel::DEBUG, 'debug', ['domain' => 'domain6']],
5555
];
5656

57-
$this->assertSame($this->logger->logs, $expectedLogs);
57+
$this->assertSame($expectedLogs, $this->logger->logs);
5858
}
5959

6060
/**
@@ -93,7 +93,7 @@ public function testWriteLog(): void
9393
[LogLevel::DEBUG, 'trace', ['domain' => 'domain9']],
9494
];
9595

96-
$this->assertSame($this->logger->logs, $expectedLogs);
96+
$this->assertSame($expectedLogs, $this->logger->logs);
9797
}
9898

9999
private function createTestPsrLogger(): LoggerInterface

0 commit comments

Comments
 (0)