Skip to content

Commit

Permalink
Polish "Use dedicated method to turn off authentication"
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Oct 8, 2019
1 parent 04a01a4 commit 32a1cdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
class DataNeo4jTestPropertiesIntegrationTests {

@Container
static final Neo4jContainer<?> neo4j = new Neo4jContainer<>().withAdminPassword(null);
static final Neo4jContainer<?> neo4j = new Neo4jContainer<>().withoutAuthentication();

@Autowired
private Environment environment;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
class DataNeo4jTestWithIncludeFilterIntegrationTests {

@Container
static final Neo4jContainer<?> neo4j = new Neo4jContainer<>().withAdminPassword(null);
static final Neo4jContainer<?> neo4j = new Neo4jContainer<>().withoutAuthentication();

@Autowired
private ExampleService service;
Expand Down

0 comments on commit 32a1cdf

Please sign in to comment.