Skip to content

Commit a0fdd32

Browse files
committed
Minor fix to remove missed parameterized test
1 parent 4a58e4d commit a0fdd32

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

driver/src/test/java/org/neo4j/driver/integration/ConnectionPoolIT.java

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,39 +18,41 @@
1818
*/
1919
package org.neo4j.driver.integration;
2020

21-
import java.util.Arrays;
22-
import java.util.LinkedList;
23-
import java.util.List;
24-
import java.util.concurrent.CountDownLatch;
25-
import java.util.concurrent.TimeUnit;
26-
2721
import org.junit.After;
2822
import org.junit.Rule;
2923
import org.junit.Test;
3024
import org.junit.runner.RunWith;
3125
import org.junit.runners.Parameterized;
3226

27+
<<<<<<< Updated upstream:driver/src/test/java/org/neo4j/driver/integration/ConnectionPoolIT.java
3328
import org.neo4j.driver.Driver;
3429
import org.neo4j.driver.GraphDatabase;
3530
import org.neo4j.driver.Session;
3631
import org.neo4j.driver.exceptions.ClientException;
3732
import org.neo4j.driver.exceptions.DatabaseException;
3833
import org.neo4j.driver.util.TestNeo4j;
34+
=======
35+
import java.util.LinkedList;
36+
import java.util.concurrent.CountDownLatch;
37+
import java.util.concurrent.TimeUnit;
38+
39+
import org.neo4j.driver.v1.Driver;
40+
import org.neo4j.driver.v1.GraphDatabase;
41+
import org.neo4j.driver.v1.Session;
42+
import org.neo4j.driver.v1.exceptions.ClientException;
43+
import org.neo4j.driver.v1.exceptions.DatabaseException;
44+
import org.neo4j.driver.v1.util.TestNeo4j;
45+
>>>>>>> Stashed changes:driver/src/test/java/org/neo4j/driver/v1/integration/ConnectionPoolIT.java
3946

4047
import static junit.framework.TestCase.fail;
4148

42-
@RunWith(Parameterized.class)
4349
public class ConnectionPoolIT
4450
{
4551
@Rule
4652
public TestNeo4j neo4j = new TestNeo4j();
4753
private Driver driver;
4854
private SessionGrabber sessionGrabber;
4955

50-
@Parameterized.Parameters
51-
public static List<Object[]> data() {
52-
return Arrays.asList( new Object[8][0] );
53-
}
5456
@Test
5557
public void shouldRecoverFromDownedServer() throws Throwable
5658
{

0 commit comments

Comments
 (0)