Skip to content

Commit

Permalink
Merge pull request #142 from sduskis/ignore_disable_test
Browse files Browse the repository at this point in the history
Fixing a broken test that fails in the hbase minicluster setting.
  • Loading branch information
sduskis committed Feb 24, 2015
2 parents 54edb8b + a5fc7cc commit 3dc2d1b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public void testDisable() throws IOException {
admin.enableTable(tableName);
table.get(get);
} finally {
if (admin.isTableEnabled(tableName)) {
admin.disableTable(tableName);
}
admin.deleteTable(tableName);
}
}
Expand Down

0 comments on commit 3dc2d1b

Please sign in to comment.