From a00f0e9de0cae75a0ac57bfad89600b18cb99c3c Mon Sep 17 00:00:00 2001 From: ansgarz Date: Sat, 19 Mar 2022 20:48:15 +0100 Subject: [PATCH] correct function names for tests for chk --- .../domaindrivenarchitecture/provs/framework/core/ProvTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/ProvTest.kt b/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/ProvTest.kt index a72a257..39f0772 100644 --- a/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/ProvTest.kt +++ b/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/core/ProvTest.kt @@ -396,7 +396,7 @@ internal class ProvTest { } @Test - fun check_returnsTrue() { + fun chk_returnsTrue() { // when val res = testLocal().chk("echo 123") @@ -405,7 +405,7 @@ internal class ProvTest { } @Test - fun check_returnsFalse() { + fun chk_returnsFalse() { // when val res = testLocal().chk("cmddoesnotexist")