Skip to content

Commit

Permalink
Fixed unit test: use the OT URI, not the BODO URI (bloody fucking idi…
Browse files Browse the repository at this point in the history
…ot I am)
  • Loading branch information
egonw committed Aug 5, 2011
1 parent 27ab872 commit 18e807a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -127,7 +127,7 @@ public abstract class AbstractOpentoxManagerPluginTest
throws BioclipseException, InvocationTargetException {
IStringMatrix stringMat = opentox.listDescriptors(TEST_SERVER_ONT);

String descriptor = stringMat.get(1, "desc");
String descriptor = stringMat.get(1, "algo");
Assert.assertNotNull(descriptor);

List<ICDKMolecule> molecules = cdk.createMoleculeList();
Expand All @@ -145,7 +145,7 @@ public abstract class AbstractOpentoxManagerPluginTest
throws BioclipseException, InvocationTargetException {
IStringMatrix stringMat = opentox.listDescriptors(TEST_SERVER_ONT);

String descriptor = stringMat.get(1, "desc");
String descriptor = stringMat.get(1, "algo");
Assert.assertNotNull(descriptor);

List<String> descriptorVals = opentox.calculateDescriptor(
Expand Down

0 comments on commit 18e807a

Please sign in to comment.