mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-09-04 04:35:33 +01:00
Fix output for tests to pass again
This commit is contained in:
parent
6d6f5596ce
commit
b9b41aa437
3 changed files with 37 additions and 9 deletions
|
@ -18,7 +18,7 @@ class BuilderTest extends TestCase
|
|||
->star()
|
||||
->important();
|
||||
|
||||
$result = new Builder([$filterA, $filterB]);
|
||||
$result = new Builder([$filterA, $filterB], '', false);
|
||||
|
||||
$expected = <<<EOF
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
|
@ -36,6 +36,6 @@ class BuilderTest extends TestCase
|
|||
</feed>
|
||||
EOF;
|
||||
|
||||
$this->assertEquals($expected, $result->__toString());
|
||||
$this->assertEquals($expected, $result->getXml());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue