Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
spacecowboy committed Jan 26, 2017
1 parent 06fbf1d commit a9e0ff6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -25,7 +25,7 @@

import java.io.File;

import org.neo4j.io.fs.DefaultFileSystemAbstraction;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.test.rule.TestDirectory;
import org.neo4j.test.rule.fs.DefaultFileSystemRule;

Expand All @@ -36,7 +36,7 @@ public class ClusterStateDirectoryTest
{
@Rule
public DefaultFileSystemRule fsRule = new DefaultFileSystemRule();
private DefaultFileSystemAbstraction fs = fsRule.get();
private FileSystemAbstraction fs = fsRule.get();

@Rule
public TestDirectory testDirectory = TestDirectory.testDirectory( fs );
Expand Down
Expand Up @@ -64,7 +64,7 @@ public class DumpClusterStateTest
@Before
public void setup() throws ClusterStateException
{
clusterStateDirectory.initialize( fsa );
clusterStateDirectory.initialize( fsa.get() );
}

@Test
Expand Down

0 comments on commit a9e0ff6

Please sign in to comment.