Skip to content

Commit

Permalink
intermittent test
Browse files Browse the repository at this point in the history
  • Loading branch information
bobjacobsen committed Nov 19, 2019
1 parent e8326d0 commit a09c054
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions java/test/jmri/jmrix/can/cbus/CbusThrottleManagerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void testCTor() {
}

@Test
public void testIncomingFuntions() {
public void testIncomingFunctions() {
CbusThrottleManager cbtm = (CbusThrottleManager) tm;
Assert.assertNotNull("exists",cbtm);
DccLocoAddress addr = new DccLocoAddress(1234,true);
Expand Down Expand Up @@ -139,7 +139,7 @@ public void testIncomingFuntions() {
}

@Test
public void testIncomingFuntionsDecimal() {
public void testIncomingFunctionsDecimal() {
CbusThrottleManager cbtmb = ( CbusThrottleManager) tm;
Assert.assertNotNull("exists",cbtmb);
DccLocoAddress addr = new DccLocoAddress(221,true);
Expand Down Expand Up @@ -167,6 +167,8 @@ public void testIncomingFuntionsDecimal() {

@Test
public void testIncomingSpeedDirection() {
Assume.assumeFalse("Ignoring intermittent test", Boolean.getBoolean("jmri.skipTestsRequiringSeparateRunning"));

CbusThrottleManager cbtmb = (CbusThrottleManager) tm;
Assert.assertNotNull("exists",cbtmb);
DccLocoAddress addr = new DccLocoAddress(422,true);
Expand Down

0 comments on commit a09c054

Please sign in to comment.