Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Swap assert to be correct way round.
  • Loading branch information
johnmay committed May 6, 2017
1 parent 65c2b0a commit 505a638
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -91,7 +91,7 @@ protected void assertReaction(String smiles)
final String expected = cansmi(reaction);
assertThat(reactions.getReactionCount(), is(not(0)));
for (IReaction actual : reactions.reactions()) {
assertThat(expected, is(cansmi(actual)));
assertThat(cansmi(actual), is(expected));
}
}

Expand Down

0 comments on commit 505a638

Please sign in to comment.