From fb7b07340ae5677f6e3cb40902e9ecd984a62ff8 Mon Sep 17 00:00:00 2001 From: Fabrice Lecomte Date: Fri, 9 Apr 2021 01:09:09 +0200 Subject: [PATCH] Improve test of password validation --- src/test/kotlin/unit/Password Validation.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/kotlin/unit/Password Validation.kt b/src/test/kotlin/unit/Password Validation.kt index e39e500..242d0de 100644 --- a/src/test/kotlin/unit/Password Validation.kt +++ b/src/test/kotlin/unit/Password Validation.kt @@ -27,6 +27,7 @@ internal class `Password Validation` { "12abCD-+".passwordScore() `should be equal to` 18 "Abcde12!".passwordScore() `should be equal to` 15 "Hello world".passwordScore() `should be equal to` 16 + "hello WORLD".passwordScore() `should be equal to` 17 } @Test