Skip to content

Commit 2f6f38f

Browse files
committed
IHF: format_xml helper test fixed.
1 parent 6c501be commit 2f6f38f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/format/FormatXmlTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ class FormatXmlTest extends TestCase
66
public function it_formats_passed_xml_string()
77
{
88
$unformatted = file_get_contents(__DIR__ . '/FormatXmlTest/unformatted.xml');
9-
$expected = file_get_contents(__DIR__ . '/FormatXmlTest/formatted.xml');
9+
$formatted = file_get_contents(__DIR__ . '/FormatXmlTest/formatted.xml');
1010

11-
$this->assertEquals($expected, format_xml($unformatted));
11+
$this->assertEquals($formatted, format_xml($unformatted));
1212
}
1313

1414
/** @test */

0 commit comments

Comments
 (0)