Skip to content

Commit 40d1ec6

Browse files
committed
Incorrect option name
1 parent 7e98797 commit 40d1ec6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

base/test-standard/src/test/java/org/openscience/cdk/tools/manipulator/AtomContainerManipulatorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ static void assertRemoveH(String smiIn, String smiExp) throws Exception {
13411341
IAtomContainer mol = smipar.parseSmiles("Brc1c(Br)c(Br)c(Br)c(Br)c1Br");
13421342
assertThat(AtomContainerManipulator.getMass(mol, MolWeight),
13431343
closeTo(551.485, 0.001));
1344-
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoringSpecified),
1344+
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoreSpecified),
13451345
closeTo(551.485, 0.001));
13461346
assertThat(AtomContainerManipulator.getMass(mol, MonoIsotopic),
13471347
closeTo(545.510, 0.001));
@@ -1356,7 +1356,7 @@ static void assertRemoveH(String smiIn, String smiExp) throws Exception {
13561356
bldr);
13571357
assertThat(AtomContainerManipulator.getMass(mol, MolWeight),
13581358
closeTo(4730.397, 0.001));
1359-
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoringSpecified),
1359+
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoreSpecified),
13601360
closeTo(4730.397, 0.001));
13611361
assertThat(AtomContainerManipulator.getMass(mol, MonoIsotopic),
13621362
closeTo(4727.140, 0.001));
@@ -1371,7 +1371,7 @@ static void assertRemoveH(String smiIn, String smiExp) throws Exception {
13711371
bldr);
13721372
assertThat(AtomContainerManipulator.getMass(mol, MolWeight),
13731373
closeTo(4729.147, 0.001));
1374-
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoringSpecified),
1374+
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoreSpecified),
13751375
closeTo(4730.397, 0.001));
13761376
assertThat(AtomContainerManipulator.getMass(mol, MonoIsotopic),
13771377
closeTo(4729.147, 0.001));
@@ -1386,7 +1386,7 @@ static void assertRemoveH(String smiIn, String smiExp) throws Exception {
13861386
bldr);
13871387
assertThat(AtomContainerManipulator.getMass(mol, MolWeight),
13881388
closeTo(4732.382, 0.001));
1389-
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoringSpecified),
1389+
assertThat(AtomContainerManipulator.getMass(mol, MolWeightIgnoreSpecified),
13901390
closeTo(4730.397, 0.001));
13911391
assertThat(AtomContainerManipulator.getMass(mol, MonoIsotopic),
13921392
closeTo(4729.147, 0.001));

0 commit comments

Comments
 (0)