We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0455b commit 2079558Copy full SHA for 2079558
src/sonic-py-common/tests/test_security_cipher.py
@@ -9,6 +9,12 @@
9
from sonic_py_common.security_cipher import security_cipher
10
from .mock_swsscommon import ConfigDBConnector
11
12
+# TODO: Remove this if/else block once we no longer support Python 2
13
+if sys.version_info.major == 3:
14
+ BUILTINS = "builtins"
15
+else:
16
+ BUILTINS = "__builtin__"
17
+
18
EXPECTED_PASSWD = "TEST2"
19
20
class TestSecurityCipher(object):
0 commit comments