Skip to content

Commit 52420d8

Browse files
authored
Bump flaky test review dates (#1952)
as we've not had time to look at these properly
1 parent 365b750 commit 52420d8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

modules/couchbase/src/test/java/org/testcontainers/couchbase/BaseCouchbaseContainerTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public abstract class BaseCouchbaseContainerTest extends AbstractCouchbaseTest {
3232
public FlakyTestJUnit4RetryRule retry = new FlakyTestJUnit4RetryRule();
3333

3434
@Test
35-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-10-01")
35+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-12-01")
3636
public void shouldInsertDocument() {
3737
RawJsonDocument expected = RawJsonDocument.create(ID, DOCUMENT);
3838
getBucket().upsert(expected);
@@ -41,7 +41,7 @@ public void shouldInsertDocument() {
4141
}
4242

4343
@Test
44-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-10-01")
44+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-12-01")
4545
public void shouldExecuteN1ql() {
4646
getBucket().query(N1qlQuery.simple("INSERT INTO " + TEST_BUCKET + " (KEY, VALUE) VALUES ('" + ID + "', " + DOCUMENT + ")"));
4747

@@ -54,7 +54,7 @@ public void shouldExecuteN1ql() {
5454
}
5555

5656
@Test
57-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-10-01")
57+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1453", reviewDate = "2019-12-01")
5858
public void shouldCreateView() {
5959
View view = DefaultView.create(VIEW_NAME, VIEW_FUNCTION);
6060
DesignDocument document = DesignDocument.create(VIEW_NAME, Lists.newArrayList(view));

modules/jdbc-test/src/test/java/org/testcontainers/jdbc/DatabaseDriverTmpfsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class DatabaseDriverTmpfsTest {
2020
public FlakyTestJUnit4RetryRule retry = new FlakyTestJUnit4RetryRule();
2121

2222
@Test
23-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1687", reviewDate = "2019-10-01")
23+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1687", reviewDate = "2019-12-01")
2424
public void tmpfs() throws IOException, InterruptedException, SQLException {
2525
final String jdbcUrl = "jdbc:tc:postgresql:9.6.8://hostname/databasename?TC_TMPFS=/testtmpfs:rw";
2626
try (Connection ignored = DriverManager.getConnection(jdbcUrl)) {

modules/toxiproxy/src/test/java/org/testcontainers/containers/ToxiproxyTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void testDirect() {
4545
}
4646

4747
@Test
48-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-10-01")
48+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-12-01")
4949
public void testLatencyViaProxy() throws IOException {
5050
// obtainProxyObject {
5151
final ToxiproxyContainer.ContainerProxy proxy = toxiproxy.getProxy(redis, 6379);
@@ -72,7 +72,7 @@ public void testLatencyViaProxy() throws IOException {
7272
}
7373

7474
@Test
75-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-10-01")
75+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-12-01")
7676
public void testConnectionCut() {
7777
final ToxiproxyContainer.ContainerProxy proxy = toxiproxy.getProxy(redis, 6379);
7878
final Jedis jedis = new Jedis(proxy.getContainerIpAddress(), proxy.getProxyPort());
@@ -97,7 +97,7 @@ public void testConnectionCut() {
9797
}
9898

9999
@Test
100-
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-10-01")
100+
@Flaky(githubIssueUrl = "https://github.com/testcontainers/testcontainers-java/issues/1769", reviewDate = "2019-12-01")
101101
public void testMultipleProxiesCanBeCreated() {
102102
try (GenericContainer secondRedis = new GenericContainer("redis:5.0.4")
103103
.withExposedPorts(6379)

0 commit comments

Comments
 (0)