Skip to content

Commit

Permalink
Revert "try renaming"
Browse files Browse the repository at this point in the history
This reverts commit 13e4c52.
  • Loading branch information
jasonli-improving committed Feb 28, 2024
1 parent 13e4c52 commit 3b539ef
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import org.junit.jupiter.api.MethodOrderer.MethodName;
import org.junit.jupiter.api.TestMethodOrder;
import org.junit.jupiter.api.TestTemplate;
import org.junit.jupiter.api.condition.DisabledIf;
import org.junit.jupiter.api.extension.ExtendWith;
import software.amazon.jdbc.dialect.AuroraMysqlDialect;
import software.amazon.jdbc.dialect.AuroraPgDialect;
Expand All @@ -62,14 +63,14 @@ public class TopologyQueryTests {

@TestTemplate
@ExtendWith(TestDriverProvider.class)
public void test_AuroraTypes(TestDriver testDriver) throws SQLException {
public void auroraTestTypes(TestDriver testDriver) throws SQLException {
LOGGER.info(testDriver.toString());

// Topology queries fail on docker containers, can't test topology for them
// if (TestEnvironment.getCurrent().getInfo().getRequest().getDatabaseEngineDeployment()
// == DatabaseEngineDeployment.DOCKER) {
// return;
// }
if (TestEnvironment.getCurrent().getInfo().getRequest().getDatabaseEngineDeployment()
== DatabaseEngineDeployment.DOCKER) {
return;
}

final Properties props = ConnectionStringHelper.getDefaultPropertiesWithNoPlugins();
DriverHelper.setConnectTimeout(testDriver, props, 10, TimeUnit.SECONDS);
Expand Down

0 comments on commit 3b539ef

Please sign in to comment.