Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Made the method static, to follow JUnit practices
  • Loading branch information
egonw committed Jan 16, 2012
1 parent f01e9f1 commit aac73e7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -38,9 +38,9 @@
public class SymbolSetQueryAtomTest extends CDKTestCase
{

SymbolSetQueryAtom symbolSet = null;
private static SymbolSetQueryAtom symbolSet = null;

@BeforeClass public void setUp() {
@BeforeClass static public void setUp() {
symbolSet = new SymbolSetQueryAtom();
symbolSet.addSymbol("C");
symbolSet.addSymbol("Fe");
Expand Down

0 comments on commit aac73e7

Please sign in to comment.