Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a typo in test name (Whit -> With)
Change-Id: Idb2acc6511f980bfee05f41d797690f91ab8e69b
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
tomas-pluskal authored and egonw committed Jul 1, 2012
1 parent feebefe commit 27cb6fc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -561,15 +561,15 @@ public void testGetHTML_IMolecularFormula_arrayString_boolean_boolean() {
Assert.assertEquals("H<sub>2</sub>C<sub>2</sub>", MolecularFormulaManipulator.getHTML(formula, newOrder, false, false));
}
@Test
public void testGetHTML_IMolecularFormulaWhitIsotope() {
public void testGetHTML_IMolecularFormulaWithIsotope() {
MolecularFormula formula = new MolecularFormula();
formula.addIsotope(ifac.getMajorIsotope("C"),2);
formula.addIsotope(ifac.getMajorIsotope("H"),6);
Assert.assertEquals("<sup>12</sup>C<sub>2</sub><sup>1</sup>H<sub>6</sub>", MolecularFormulaManipulator.getHTML(formula,false,true));
}

@Test
public void testGetHTML_IMolecularFormulaWhitIsotopeAndCharge() {
public void testGetHTML_IMolecularFormulaWithIsotopeAndCharge() {
MolecularFormula formula = new MolecularFormula();
formula.addIsotope(ifac.getMajorIsotope("C"),2);
formula.addIsotope(ifac.getMajorIsotope("H"),6);
Expand Down

0 comments on commit 27cb6fc

Please sign in to comment.