Skip to content

Commit

Permalink
Fixed 1022
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Vabishchevich committed Sep 13, 2016
1 parent fd3bcc4 commit b8237b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/www/jxcore/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (process.platform === 'android' || process.platform === 'ios') {
return;
}
//TODO uncomment node tests
// return;
return;
}

ThaliMobile.getNetworkStatus()
Expand Down
2 changes: 1 addition & 1 deletion src/com/test/thalitest/ThaliTestSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

@RunWith(Suite.class)
//@Suite.SuiteClasses({ConnectionHelperTest.class,ConnectionModelTest.class,ConnectivityMonitorTest.class,IncomingSocketThreadTest.class,LifeCycleMonitorTest.class,ListenerOrIncomingConnectionTest.class,OutgoingSocketThreadTest.class,SocketThreadBaseTest.class,StartStopOperationHandlerTest.class,StartStopOperationTest.class,StreamCopyingThreadTest.class})
@Suite.SuiteClasses({ StreamCopyingThreadTest.class})
@Suite.SuiteClasses({ StartStopOperationHandlerTest.class})
public class ThaliTestSuite {
}
2 changes: 1 addition & 1 deletion src/io/jxcore/node/StartStopOperationHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class StartStopOperationHandler {
private final ConnectionManager mConnectionManager;
private final DiscoveryManager mDiscoveryManager;
private CountDownTimer mOperationTimeoutTimer = null;
private StartStopOperation mCurrentOperation = null;
private volatile StartStopOperation mCurrentOperation = null;

/**
* Constructor.
Expand Down

0 comments on commit b8237b9

Please sign in to comment.