Skip to content

Commit

Permalink
fixed phptest typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan authored and jdavidbakr committed Aug 7, 2020
1 parent f5ffc96 commit e00b77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MailTrackerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ public function it_handles_apostrophes_in_links()
$matches = null;
preg_match_all('/(<a[^>]*href=[\"])([^\"]*)/', $body, $matches);
$links = $matches[2];
$aLink = $links[1];
$aLink = $links[0];

$expected_url = "http://www.google.com?q=foo'bar";
$this->assertNotNull($aLink);
Expand Down

0 comments on commit e00b77b

Please sign in to comment.