Skip to content

Commit

Permalink
fixup! Ensure that activities are fully deleted between tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amberin committed Mar 17, 2024
1 parent a927baa commit a6b7c31
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ public class SyncingTest extends OrgzlyTest {
@Override
public void tearDown() throws Exception {
super.tearDown();
scenario.close();
if (scenario != null) {
scenario.close();
}
}

private void sync() {
Expand Down

0 comments on commit a6b7c31

Please sign in to comment.