Fixing broken unit test for ConversationAdapter

The unit test for ConversationAdapter.getItemId() was
broken by this change: 7286fd9

Fixes #6088
// FREEBIE
This commit is contained in:
Stuart Gilbert 2017-01-27 08:40:37 -08:00 committed by Moxie Marlinspike
parent 53d590947e
commit 11463d410d

View File

@ -24,14 +24,11 @@ public class ConversationAdapterTest extends BaseUnitTest {
} }
@Test @Test
public void testGetItemIdEquals() throws Exception { public void testGetItemIdEquals() {
when(cursor.getString(anyInt())).thenReturn("SMS::1::1"); when(cursor.getLong(anyInt())).thenReturn(1234L);
long firstId = adapter.getItemId(cursor); long firstId = adapter.getItemId(cursor);
when(cursor.getString(anyInt())).thenReturn("MMS::1::1"); when(cursor.getLong(anyInt())).thenReturn(4321L);
long secondId = adapter.getItemId(cursor); long secondId = adapter.getItemId(cursor);
assertNotEquals(firstId, secondId); assertNotEquals(firstId, secondId);
when(cursor.getString(anyInt())).thenReturn("MMS::2::1");
long thirdId = adapter.getItemId(cursor);
assertNotEquals(secondId, thirdId);
} }
} }