Skip to content

Commit

Permalink
Merge branch '2.7.x' into 3.0.x
Browse files Browse the repository at this point in the history
Closes gh-34940
  • Loading branch information
snicoll committed Apr 11, 2023
2 parents 320db79 + eec806f commit 86a8ed1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,7 +30,7 @@
class MyIntegrationTests {

@Container
static Neo4jContainer<?> neo4j = new Neo4jContainer<>("neo4j:4.2");
static Neo4jContainer<?> neo4j = new Neo4jContainer<>("neo4j:5");

@Test
void myTest() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -28,7 +28,7 @@
class MyIntegrationTests {

@Container
static Neo4jContainer<?> neo4j = new Neo4jContainer<>("neo4j:4.2");
static Neo4jContainer<?> neo4j = new Neo4jContainer<>("neo4j:5");

@Test
void myTest() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ internal class MyIntegrationTests {
companion object {

@Container
var neo4j: Neo4jContainer<*> = Neo4jContainer<Nothing>("neo4j:4.2")
var neo4j: Neo4jContainer<*> = Neo4jContainer<Nothing>("neo4j:5")

@DynamicPropertySource
fun neo4jProperties(registry: DynamicPropertyRegistry) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal class MyIntegrationTests {

companion object {
@Container
var neo4j: Neo4jContainer<*> = Neo4jContainer<Nothing>("neo4j:4.2")
var neo4j: Neo4jContainer<*> = Neo4jContainer<Nothing>("neo4j:5")
}

}

0 comments on commit 86a8ed1

Please sign in to comment.