Skip to content

Commit

Permalink
Merge pull request square#207 from MariusVolkhart/AbstractAccessibili…
Browse files Browse the repository at this point in the history
…tyRecordAssert

Adjust error message in AbstractAccessibilityRecordAssert
  • Loading branch information
JakeWharton committed Apr 1, 2016
2 parents dcbf476 + a7ade08 commit 0291592
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public AbstractAccessibilityRecordAssert hasScrollY(int scroll) {
isNotNull();
int actualScroll = actual.getScrollY();
assertThat(actualScroll) //
.overridingErrorMessage("Expected maximum Y scroll <%s> but was <%s>.", scroll,
.overridingErrorMessage("Expected Y scroll <%s> but was <%s>.", scroll,
actualScroll) //
.isEqualTo(scroll);
return this;
Expand Down

0 comments on commit 0291592

Please sign in to comment.