Skip to content
Snippets Groups Projects
Commit 6bf1be3b authored by Demian Katz's avatar Demian Katz
Browse files

More appropriate parameter order in assertion.

parent 21d12ef0
No related merge requests found
...@@ -56,8 +56,8 @@ class ExtendedIniNormalizerTest extends \VuFindTest\Unit\TestCase ...@@ -56,8 +56,8 @@ class ExtendedIniNormalizerTest extends \VuFindTest\Unit\TestCase
if (substr($file, -4) == '.ini') { if (substr($file, -4) == '.ini') {
$full = $langDir . '/' . $file; $full = $langDir . '/' . $file;
$this->assertEquals( $this->assertEquals(
file_get_contents($full),
$normalizer->normalizeFileToString($full), $normalizer->normalizeFileToString($full),
file_get_contents($full),
$file $file
); );
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment