Skip to content

Commit

Permalink
Disable setup and teardown for SymlinkAwareZooKeeperTest
Browse files Browse the repository at this point in the history
This test was still failing because, evidently, @ignore does not
apply to setup and teardown methods in test classes.

RB=1894377
R=kbalasub,kramgopa,cxu,mdmitrie
A=mdmitrie
  • Loading branch information
evanw555 committed Nov 26, 2019
1 parent 5dcaf1d commit 454e917
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

28.0.7
------
(RB=1894377)
Disable setup and teardown for SymlinkAwareZooKeeperTest

(RB=1892519)
Bump TestNG to enable @Ignore annotation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class SymlinkAwareZooKeeperTest
private ZKServer _zkServer;
private int _port;

@BeforeSuite
@BeforeSuite(enabled = false)
public void setup() throws InterruptedException, ExecutionException, IOException
{
_port = 11830;
Expand All @@ -67,7 +67,7 @@ public void setup() throws InterruptedException, ExecutionException, IOException
}


@AfterSuite
@AfterSuite(enabled = false)
public void tearDown() throws IOException, InterruptedException
{
_zkClient.shutdown();
Expand Down

0 comments on commit 454e917

Please sign in to comment.