Skip to content

Commit

Permalink
more window teardown in DCCpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pabender committed Oct 9, 2019
1 parent e41384a commit fdf8054
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions java/test/jmri/jmrix/dccpp/DCCppMultiMeterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public void setUp() {
mm = new DCCppMultiMeter(memo);
}

@Override
@After
public void tearDown() {
JUnitUtil.resetWindows(false,false);
super.tearDown();
}

// private final static Logger log = LoggerFactory.getLogger(DCCppMultiMeterTest.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public void setUp() {
@After
@Override
public void tearDown() {
cc = null;
cc = null;
JUnitUtil.resetWindows(false,false);
jmri.util.JUnitUtil.tearDown();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public void setUp() {
@Override
@After
public void tearDown() {
JUnitUtil.resetWindows(false,false);
JUnitUtil.tearDown();
}

Expand Down

0 comments on commit fdf8054

Please sign in to comment.