Skip to content

Commit

Permalink
added Expected to error message from test
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalv committed Jan 14, 2011
1 parent 9a4073a commit 6467cea
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,6 +42,6 @@ public void testScrapePubchemPageSync() throws BioclipseException {

System.out.println("Scraped " + mols.size() + " mols from page.");
//We don't know how many it is, could vary over time
assertTrue( mols.size()>3 );
assertTrue( "Expected > 3, was: " + mols.size(), mols.size()>3 );
}
}

0 comments on commit 6467cea

Please sign in to comment.