Skip to content

Commit

Permalink
trying to get tests passing on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
slogsdon committed Jan 12, 2015
1 parent a39aa34 commit 3f592a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ php:
- 5.6
- hhvm

before_install:
- composer self-update

install:
- composer install

Expand Down
2 changes: 1 addition & 1 deletion tests/Builder/CompanyBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function testBuilderAsXml()
$builder = new CompanyBuilder($this->expectedCompany());
$xml = $builder->asXml();

$this->assertEquals($this->expectedXml(), $xml);
$this->assertXmlStringEqualsXmlString($this->expectedXml(), $xml);
}

/** @var \ABC\Builder\Company */
Expand Down

0 comments on commit 3f592a0

Please sign in to comment.