Skip to content

Commit

Permalink
The test assertion had the super and sub structure the wrong way round.
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Beisken <sbeisken@gmail.com>
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
johnmay authored and egonw committed Dec 18, 2013
1 parent 83669b2 commit 9abeacc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public void testBug934819() throws Exception {
IBitFingerprint superBits = fpr.getBitFingerprint(superStructure);
IBitFingerprint subBits = fpr.getBitFingerprint(subStructure);

Assert.assertThat(superBits.asBitSet(),
Assert.assertThat(subBits.asBitSet(),
is(asBitSet(9, 10, 14, 18, 19, 33, 143, 146, 255, 256,
283, 284, 285, 293, 301, 332, 344, 349, 351,
353, 355, 368, 370, 371, 376, 383, 384, 395,
Expand All @@ -348,7 +348,7 @@ public void testBug934819() throws Exception {
502, 507, 513, 514, 516, 520, 524, 531, 532,
545, 546, 549, 552, 556, 558, 564, 570, 586,
592, 599, 600, 607, 633, 658, 665)));
Assert.assertThat(subBits.asBitSet(),
Assert.assertThat(superBits.asBitSet(),
is(asBitSet(9, 10, 11, 14, 18, 19, 33, 34, 143, 146, 150,
153, 255, 256, 257, 258, 283, 284, 285, 293,
301, 332, 344, 349, 351, 353, 355, 368, 370,
Expand Down

0 comments on commit 9abeacc

Please sign in to comment.