Skip to content

Commit

Permalink
Modifying test that got broken on commit ef103ef, see #41
Browse files Browse the repository at this point in the history
  • Loading branch information
josemduarte committed Dec 5, 2016
1 parent 6040c77 commit 7705fa6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eppic-cli/src/test/java/eppic/assembly/TestLatticeGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@ public void testIsomorphicDetection1a99() throws IOException, StructureException
assertFalse(a.isValid());
assertFalse(a.isIsomorphic());

// clusters 4: isologous and isomorphic
// cluster 4: non-isomorphic
a = ab.generateAssembly(4);
assertTrue(a.isValid());
assertTrue(a.isIsomorphic());
assertFalse(a.isValid());
assertFalse(a.isIsomorphic());


}
Expand Down

0 comments on commit 7705fa6

Please sign in to comment.