From c0acd24e1b0348c38f65d03c2fb89cf3eab75ebe Mon Sep 17 00:00:00 2001 From: utzcoz Date: Sun, 3 Apr 2022 14:37:36 +0800 Subject: [PATCH] Remove unused Exception from example in README.md Signed-off-by: utzcoz --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1dac7e351b..d44c1fd5144 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Here's an example of a simple test written using Robolectric: public class MyActivityTest { @Test - public void clickingButton_shouldChangeResultsViewText() throws Exception { + public void clickingButton_shouldChangeResultsViewText() { Activity activity = Robolectric.setupActivity(MyActivity.class); Button button = (Button) activity.findViewById(R.id.press_me_button);