Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(README): fix two example function calls
  • Loading branch information
technosophos authored and arschles committed Jun 20, 2016
1 parent 5c22e2e commit fc2da98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -12,8 +12,8 @@ You can write this test with `assert`:
```go
func TestSomething(t *testing.T) {
i, err := doSomething()
assert.NoErr(err)
assert.Equal(i, 123, "returned integer")
assert.NoErr(t, err)
assert.Equal(t, i, 123, "returned integer")
}
```

Expand Down

0 comments on commit fc2da98

Please sign in to comment.