We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62bfba5 + c38763e commit d5a0d6aCopy full SHA for d5a0d6a
espresso/CHANGELOG.md
@@ -15,6 +15,7 @@ The following artifacts were released:
15
* `androidx.test.espresso.idling:idling-net:{version}`
16
17
**Bug Fixes**
18
+* Fix typo in AdapterDataLoaderAction error message
19
20
**New Features**
21
espresso/core/java/androidx/test/espresso/action/AdapterDataLoaderAction.java
@@ -72,7 +72,7 @@ public AdapterDataLoaderAction(
72
73
public AdapterViewProtocol.AdaptedData getAdaptedData() {
74
synchronized (dataLock) {
75
- checkState(performed, "perform hasn't beenViewFinderImpl called yet!");
+ checkState(performed, "perform hasn't been called yet!");
76
return adaptedData;
77
}
78
0 commit comments