Skip to content

Commit d5a0d6a

Browse files
Merge pull request #1874 from TWiStErRob:patch-1
PiperOrigin-RevId: 587793079
2 parents 62bfba5 + c38763e commit d5a0d6a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

espresso/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The following artifacts were released:
1515
* `androidx.test.espresso.idling:idling-net:{version}`
1616

1717
**Bug Fixes**
18+
* Fix typo in AdapterDataLoaderAction error message
1819

1920
**New Features**
2021

espresso/core/java/androidx/test/espresso/action/AdapterDataLoaderAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public AdapterDataLoaderAction(
7272

7373
public AdapterViewProtocol.AdaptedData getAdaptedData() {
7474
synchronized (dataLock) {
75-
checkState(performed, "perform hasn't beenViewFinderImpl called yet!");
75+
checkState(performed, "perform hasn't been called yet!");
7676
return adaptedData;
7777
}
7878
}

0 commit comments

Comments
 (0)