Skip to content

Commit

Permalink
property for build path uses project.buildDir
Browse files Browse the repository at this point in the history
  • Loading branch information
schroeder committed Nov 13, 2013
1 parent 79721a4 commit d13d6dc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ task copyToLib(type: Copy) {
}

test {
systemProperty 'tiles.source', './build/resources/test/jfxtras/labs/map/tile'
systemProperty 'tiles.source', "${project.buildDir}/resources/test/jfxtras/labs/map/tile"
}
4 changes: 0 additions & 4 deletions src/test/java/jfxtras/labs/map/tile/TileRepositoryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import java.io.File;
import java.util.logging.Logger;

import javafx.scene.image.ImageView;
import jfxtras.labs.JavaFXPlatformAbstractTest;
Expand All @@ -42,7 +40,6 @@
import jfxtras.labs.map.tile.osm.OsmTileSourceFactory;
import jfxtras.labs.map.tile.osm.OsmType;

import org.junit.Ignore;
import org.junit.Test;

/**
Expand Down Expand Up @@ -79,7 +76,6 @@ public void testBingSource() {
}

@Test
@Ignore
public void testLocalSource() {

TileSourceFactory<String> factory = new LocalTileSourceFactory();
Expand Down

0 comments on commit d13d6dc

Please sign in to comment.