diff options
Diffstat (limited to 'tests/app/Encodings/CP437Test.php')
| -rw-r--r-- | tests/app/Encodings/CP437Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Encodings/CP437Test.php b/tests/app/Encodings/CP437Test.php index 7358e423b0..11689f5f64 100644 --- a/tests/app/Encodings/CP437Test.php +++ b/tests/app/Encodings/CP437Test.php @@ -48,7 +48,7 @@ class CP437Test extends TestCase $actual = $encoding->toUtf8($character); $expected = iconv(CP437::NAME, UTF8::NAME, $character); - $this->assertSame($expected, $actual, dechex($code_point) . '=>' . $actual . ' ' . $expected); + static::assertSame($expected, $actual, dechex($code_point) . '=>' . $actual . ' ' . $expected); } } } |
