Skip to content

Commit

Permalink
fixed non-idempotent unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyaok2 committed May 26, 2024
1 parent ce3eb9c commit 57b2532
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions asynchbase/src/test/java/site/ycsb/db/AsyncHBaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ public void setUp() throws Exception {
public void tearDown() throws Exception {
table.close();
testingUtil.deleteTable(tableName);
client.cleanup();
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ public void setUp() throws Exception {
public void tearDown() throws Exception {
table.close();
testingUtil.deleteTable(tableName);
client.cleanup();
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public void setUp(Properties p) throws Exception {
public void tearDown() throws Exception {
table.close();
testingUtil.deleteTable(TableName.valueOf(tableName));
client.cleanup();
}

@Test
Expand Down

0 comments on commit 57b2532

Please sign in to comment.