Skip to content

Commit

Permalink
use direct commit URL for downloading sample DBs in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danthe1st committed Dec 10, 2024
1 parent 3444310 commit 5ef0749
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class SOSetup {

public static synchronized GraphDatabaseService getDatabase() throws IOException, IncorrectFormat, InterruptedException, URISyntaxException {
if(graphDb == null){
graphDb = Neo4JSetup.createDatabase(Path.of("testdb", "so"), new URI("https://github.com/neo4j-graph-examples/stackoverflow/raw/main/data/stackoverflow-50.dump").toURL());
graphDb = Neo4JSetup.createDatabase(Path.of("testdb", "so"), new URI("https://github.com/neo4j-graph-examples/stackoverflow/raw/7f0fa206ae9a0a4514a49879b3f497927f2beee0/data/stackoverflow-50.dump").toURL());
}
return graphDb;
}
Expand Down

0 comments on commit 5ef0749

Please sign in to comment.