From 582a830a80aec460f78c9c500382562e6a7bf289 Mon Sep 17 00:00:00 2001 From: ansgarz Date: Fri, 5 Jul 2024 22:02:36 +0200 Subject: [PATCH] [skip ci] add cmts --- .../core/processors/ContainerUbuntuHostProcessorTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/processors/ContainerUbuntuHostProcessorTest.kt b/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/processors/ContainerUbuntuHostProcessorTest.kt index ac993ba..81568f9 100644 --- a/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/processors/ContainerUbuntuHostProcessorTest.kt +++ b/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/processors/ContainerUbuntuHostProcessorTest.kt @@ -57,8 +57,8 @@ class ContainerUbuntuHostProcessorTest { val remoteProvBySsh = remote(ipOfContainer, "testuser", password) // when - val firstSessionResult = remoteProvBySsh.cmd("echo 1") - val secondSessionResult = remoteProvBySsh.cmd("echo 1") + val firstSessionResult = remoteProvBySsh.cmd("echo 1") // connect (to container) by ssh via ip + val secondSessionResult = remoteProvBySsh.cmd("echo 2") // second connect after first connection has been closed // then assertTrue(firstSessionResult.success)