Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix CR comments
  • Loading branch information
Joe Hansche committed Mar 28, 2017
commit 8481649018a59c6183e4aaeac4bdbd74e5ee6ed6
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public void testDisconnectOnBackgroundThread() throws Exception {
}

@Test
public void testCallbackNotifiedOnDisconnect() throws Exception {
public void testCallbackNotifiedOnUnexpectedDisconnect() throws Exception {
LoggingCallbacks callbacks = new LoggingCallbacks();
parseLiveQueryClient.registerListener(callbacks);
callbacks.transcript.assertNoEventsSoFar();
Expand All @@ -410,9 +410,8 @@ public void testCallbackNotifiedOnDisconnect() throws Exception {
callbacks.transcript.assertEventsSoFar("onLiveQueryClientDisconnected: false");
}


@Test
public void testCallbackNotifiedOnDisconnect_expected() throws Exception {
public void testCallbackNotifiedOnExpectedDisconnect() throws Exception {
LoggingCallbacks callbacks = new LoggingCallbacks();
parseLiveQueryClient.registerListener(callbacks);
callbacks.transcript.assertNoEventsSoFar();
Expand Down