Skip to content

Commit

Permalink
Merge pull request #5 from remicollet/issue-typo
Browse files Browse the repository at this point in the history
fix typo in test
  • Loading branch information
mnapoli authored Jun 13, 2016
2 parents b2aa94f + 63a5d09 commit 023279d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/EasyMockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function should_allow_to_spy_method_calls()
$mock->__phpunit_verify();
$this->fail('Exception not thrown');
} catch (\PHPUnit_Framework_ExpectationFailedException $e) {
$this->assertContains('Expected invocation at least once but it never occured', $e->getMessage());
$this->assertContains('Expected invocation at least once but it never occur', $e->getMessage());
}

// Invoke the mock: the test should now pass
Expand Down

0 comments on commit 023279d

Please sign in to comment.