summaryrefslogtreecommitdiff
path: root/tests/app/Encodings/Windows1252Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Encodings/Windows1252Test.php')
-rw-r--r--tests/app/Encodings/Windows1252Test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Encodings/Windows1252Test.php b/tests/app/Encodings/Windows1252Test.php
index 590864e608..9b853ab30d 100644
--- a/tests/app/Encodings/Windows1252Test.php
+++ b/tests/app/Encodings/Windows1252Test.php
@@ -49,7 +49,7 @@ class Windows1252Test extends TestCase
$expected = iconv(Windows1252::NAME, 'UTF-8//IGNORE', $character);
$expected = $expected === '' ? UTF8::REPLACEMENT_CHARACTER : $expected;
- $this->assertSame($expected, $actual, dechex($code_point) . '=>' . $actual . ' ' . $expected);
+ static::assertSame($expected, $actual, dechex($code_point) . '=>' . $actual . ' ' . $expected);
}
}
}