Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static String getPathFromClassPathResource(String resourcePath)

public static void exposeFixedPorts(GenericContainer<?> container)
{
checkState(isEnvSet("CONTINUOUS_INTEGRATION"), "" +
checkState(!isEnvSet("CONTINUOUS_INTEGRATION"), "" +
"Exposing fixed ports should not be used in regular test code. This could break parallel test execution. " +
"This method is supposed to be invoked from local development helpers only e.g. QueryRunner.main(), " +
"hence it should never run on CI");
Expand Down
Loading