We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
format_xml
1 parent 6c501be commit 2f6f38fCopy full SHA for 2f6f38f
tests/format/FormatXmlTest.php
@@ -6,9 +6,9 @@ class FormatXmlTest extends TestCase
6
public function it_formats_passed_xml_string()
7
{
8
$unformatted = file_get_contents(__DIR__ . '/FormatXmlTest/unformatted.xml');
9
- $expected = file_get_contents(__DIR__ . '/FormatXmlTest/formatted.xml');
+ $formatted = file_get_contents(__DIR__ . '/FormatXmlTest/formatted.xml');
10
11
- $this->assertEquals($expected, format_xml($unformatted));
+ $this->assertEquals($formatted, format_xml($unformatted));
12
}
13
14
/** @test */
0 commit comments