Skip to content

Commit

Permalink
Add teardown to test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Nov 13, 2020
1 parent c1c099c commit 7c2068e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import lombok.extern.slf4j.Slf4j;

import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -56,4 +57,8 @@ public void testGetUnusedBsqAddress() {
|| addressNetwork.equals(PAYMENT_PROTOCOL_ID_REGTEST));
}

@AfterAll
public static void tearDown() {
tearDownScaffold();
}
}

0 comments on commit 7c2068e

Please sign in to comment.