Skip to content

Commit

Permalink
fix watcher logs
Browse files Browse the repository at this point in the history
  • Loading branch information
burak-58 committed Aug 21, 2023
1 parent 0850ae0 commit 853634a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void before() {
public TestWatcher watchman= new TestWatcher() {
@Override
protected void failed(Throwable e, Description description) {
Log.i("TestWatcher", "******\n*** "+description + " failed!\n");
Log.i("TestWatcher", "*** "+description + " failed!\n");
}

@Override
Expand All @@ -73,7 +73,7 @@ protected void succeeded(Description description) {
}

protected void starting(Description description) {
Log.i("TestWatcher", "*** "+description + " starting!\n");
Log.i("TestWatcher", "******\n*** "+description + " starting!\n");
}

protected void finished(Description description) {
Expand Down

0 comments on commit 853634a

Please sign in to comment.