Skip to content

Commit

Permalink
TEMP
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Pykavy committed Feb 27, 2021
1 parent a63bf40 commit d4561a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ public void test_run_with_env_vars() throws IOException, InterruptedException {
String envVarsString = dockerClient.inspect(launchEnv, containerId, ".Config.Env)");
Assert.assertNotNull(envVarsString);

System.out.println(envVarsString);

for (Map.Entry<String, String> variable : containerEnv.entrySet()) {
Assert.assertTrue(envVarsString.contains(variable.getKey() + "=" + variable.getValue()));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ public void test_run_with_env_vars() throws IOException, InterruptedException {
String envVarsString = dockerClient.inspect(launchEnv, containerId, ".Config.Env)");
Assert.assertNotNull(envVarsString);

System.out.println(envVarsString);

for (Map.Entry<String, String> variable : containerEnv.entrySet()) {
Assert.assertTrue(envVarsString.contains(variable.getKey() + "=" + variable.getValue()));
}
Expand Down

0 comments on commit d4561a6

Please sign in to comment.