Skip to content

Commit 3a8ab2a

Browse files
committed
Test fix
1 parent 8957ad3 commit 3a8ab2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceJobSupportImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ public void testSerializeWithMap() throws Exception
359359

360360
List<Long> serializedListLong = deserialized.getCachedObject("cachedListLong", mapper.getTypeFactory().constructType(LongArrayList.class));
361361
assertEquals("List<Long> not serialized properly", 2, serializedListLong.size());
362-
assertNotNull("List<Long> values not serialized properly", serializedListLong.get(1));
363-
assertNotNull("List<Long> values not serialized properly", serializedListLong.get(2));
362+
assertEquals("List<Long> values not serialized properly", 1L, (long)serializedListLong.get(0));
363+
assertEquals("List<Long> values not serialized properly", 2L, (long)serializedListLong.get(1));
364364
}
365365

366366
@Test

0 commit comments

Comments
 (0)