Skip to content

Commit

Permalink
changed test to look for a string that contains Google instead of bei…
Browse files Browse the repository at this point in the history
…ng Google
  • Loading branch information
s-miehlbradt committed Jul 15, 2016
1 parent f2f2150 commit 29eec8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tests/SeleniumFirefoxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ protected function setUp()
public function testTitle()
{
$this->url('http://www.google.com/');
$this->assertEquals('Google', $this->title());
$this->assertContains('Google', $this->title());
}

}

0 comments on commit 29eec8b

Please sign in to comment.