Skip to content

Commit

Permalink
Fixed extending the most specific test class
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jan 24, 2012
1 parent ab8aa48 commit 74a7dc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -28,10 +28,10 @@
/**
* @cdk.module test-ioformats
*/
public class CrystClustFormatTest extends ChemFormatTest {
public class CrystClustFormatTest extends ChemFormatMatcherTest {

public CrystClustFormatTest() {
super.setChemFormat((IChemFormat)CrystClustFormat.getInstance());
super.setChemFormatMatcher((IChemFormatMatcher)CrystClustFormat.getInstance());
}

}
4 changes: 2 additions & 2 deletions src/test/org/openscience/cdk/io/formats/JaguarFormatTest.java
Expand Up @@ -27,10 +27,10 @@
/**
* @cdk.module test-ioformats
*/
public class JaguarFormatTest extends ChemFormatTest {
public class JaguarFormatTest extends ChemFormatMatcherTest {

public JaguarFormatTest() {
super.setChemFormat((IChemFormat)JaguarFormat.getInstance());
super.setChemFormatMatcher((IChemFormatMatcher)JaguarFormat.getInstance());
}

}

0 comments on commit 74a7dc4

Please sign in to comment.