Skip to content

Commit aa0d7f5

Browse files
committed
Trim of test output for Windows machines
1 parent bcad732 commit aa0d7f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Commands/HmacTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ public function testReEncrypt(): void
106106

107107
// verify that only 1 key needed to be re-encrypted
108108
$this->assertCount(2, $results);
109-
$this->assertSame('id: 1, Re-encrypted.', $results[0]);
110-
$this->assertSame('id: 2, already encrypted with current key, skipped.', $results[1]);
109+
$this->assertSame('id: 1, Re-encrypted.', trim($results[0]));
110+
$this->assertSame('id: 2, already encrypted with current key, skipped.', trim($results[1]));
111111

112112
$encrypter = new HmacEncrypter();
113113

0 commit comments

Comments
 (0)