From 0fad68b9f6748ab881f9fb80918d932f69b80965 Mon Sep 17 00:00:00 2001 From: Amal Graafstra Date: Wed, 8 Jul 2026 15:19:05 -0700 Subject: [PATCH] Replace a real OTP secret in a test with a dummy vector --- test_oath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_oath.py b/test_oath.py index 6ce157c..bea5914 100644 --- a/test_oath.py +++ b/test_oath.py @@ -73,7 +73,7 @@ class TestSecret(unittest.TestCase): self.assertEqual(decode_secret("ge zd gn bv"), decode_secret("GEZDGNBV")) def test_pad_short_key_to_14_zero_filled(self): - raw = decode_secret("JBSWY3DPEHPK3PXP") # 16 chars -> 10 bytes + raw = decode_secret("JBSWY3DPEHPK3PXP") # dummy: 16 chars -> 10 bytes self.assertEqual(len(raw), 10) padded = pad_key(raw) self.assertEqual(len(padded), 14)