diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 8fc9c5710..6f3f1d98b 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -7,7 +7,7 @@ **Bug Fixes** * Fix `Rect` handling in `ViewCapture` for SDK >= 34 for non root views. * Fix bug reporting the status code when PixelCopy fails in ViewCapture.generateBitmapFromPixelCopy. - +* Improving wording of a failure message. **New Features** diff --git a/core/java/androidx/test/core/app/InstrumentationActivityInvoker.java b/core/java/androidx/test/core/app/InstrumentationActivityInvoker.java index 6ea23654e..dbaa81c6c 100644 --- a/core/java/androidx/test/core/app/InstrumentationActivityInvoker.java +++ b/core/java/androidx/test/core/app/InstrumentationActivityInvoker.java @@ -289,7 +289,7 @@ public ActivityResult getActivityResult() { } checkNotNull( activityResult, - "onActivityResult never be called after %d milliseconds", + "onActivityResult was not called within %d milliseconds", ActivityLifecycleTimeout.getMillis()); return activityResult; }