From 540e745c7fe2e1399cc7838cd0d836b904747ec3 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 1 Oct 2022 15:04:06 +0200 Subject: [PATCH] Fixed output results in PwnedPassApi tests --- password_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/password_test.go b/password_test.go index 65dd035..a4ad5b9 100644 --- a/password_test.go +++ b/password_test.go @@ -162,7 +162,7 @@ func ExamplePwnedPassApi_CheckPassword() { if m != nil && m.Count != 0 { fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n", m.Hash, m.Count) - // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB + // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86495 times in the pwned passwords DB } } @@ -177,7 +177,7 @@ func ExamplePwnedPassApi_CheckPassword_withPadding() { if m != nil && m.Count != 0 { fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n", m.Hash, m.Count) - // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB + // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86495 times in the pwned passwords DB } } @@ -193,6 +193,6 @@ func ExamplePwnedPassApi_CheckSHA1() { if m != nil && m.Count != 0 { fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n", m.Hash, m.Count) - // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86453 times in the pwned passwords DB + // Output: Your password with the hash "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" was found 86495 times in the pwned passwords DB } }