Updated comments

This commit is contained in:
Robinson 2021-01-22 12:34:07 +01:00
parent 374e0bf29f
commit aee1f16e31
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ class ProcessSshTest {
@Test @Test
fun testConnect() { fun testConnect() {
val process = runBlocking { val process = runBlocking {
// NOTE: DO NOT SAVE LEGIT CREDENTIALS IN THIS FILE!
Executor() Executor()
.enableRead() .enableRead()
.asSshProcess() .asSshProcess()
@ -31,7 +32,7 @@ class ProcessSshTest {
.host("1.2.3.4") .host("1.2.3.4")
.userName("user") .userName("user")
.password("12345!") .password("12345!")
.port(43) .port(123)
.command("ls") .command("ls")
.start() .start()
} }