Skip to content
This repository has been archived by the owner on Jan 2, 2020. It is now read-only.

Commit

Permalink
Fix Obj-C presentedCount example
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Feb 11, 2019
1 parent 18a1a07 commit 8d28ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -54,7 +54,7 @@ func test_showAlert_alertShouldHaveTitle() {

[sut showAlert]; // Whatever triggers the alert

XCTAssertEqualObjects(alertVerifier.presentedCount, 1, @"presented count");
XCTAssertEqual(alertVerifier.presentedCount, 1, @"presented count");
XCTAssertEqualObjects(alertVerifier.title, @"Hello!", @"title");
}
```
Expand Down

0 comments on commit 8d28ac9

Please sign in to comment.