From bf3a31c70df45b0c1be2cb78f841d3d4da192e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Gajdu=C5=A1ek?= Date: Mon, 11 Mar 2024 20:09:52 +0100 Subject: [PATCH] Mark fake secret as "notsecret" (#14336) (cherry picked from commit 98f375db26787e031e259ffe332740330bea45ba) --- tests/robottelo/test_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/robottelo/test_dependencies.py b/tests/robottelo/test_dependencies.py index 185f0866737..2a6b0a9fb81 100644 --- a/tests/robottelo/test_dependencies.py +++ b/tests/robottelo/test_dependencies.py @@ -81,7 +81,7 @@ def test_productmd(): def test_pyotp(): import pyotp - fake_secret = 'JBSWY3DPEHPK3PXP' + fake_secret = 'JBSWY3DPEHPK3PXP' # notsecret totp = pyotp.TOTP(fake_secret) assert totp.now()