Skip to content

Commit

Permalink
Fix markdown typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Mar 25, 2015
1 parent 2ba3301 commit 3e328c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Simple, intuitive integration testing with PHPUnit. For the projects where you're less interested in fancy tools and discussions with the business, and more concerned with just ensuring that the dang thing works. :)

- [Installation](#step-1-install])
- [Installation](#step-1-install)
- [Extend](#step-2-extend)
- [Examples](#step-3-write-some-integration-tests)
- [API](#api)
Expand Down
2 changes: 1 addition & 1 deletion src/Extensions/IntegrationTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public function click($name)
if (! count($link)) {
$link = $this->filterByNameOrId($name, 'a');

if ( ! count($link)) {
if (! count($link)) {
$message = "Couldn't see a link with a body, name, or id attribute of, '{$name}'.";

throw new InvalidArgumentException($message);
Expand Down

0 comments on commit 3e328c1

Please sign in to comment.