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 f4745b4 commit 2b08431Copy full SHA for 2b08431
src/sonic-py-common/tests/test_security_cipher.py
@@ -1,5 +1,12 @@
1
+import sys
2
+
3
+if sys.version_info.major == 3:
4
+ from unittest import mock
5
+else:
6
+ import mock
7
8
from sonic_py_common.security_cipher import security_cipher
-from .mock_swsscommon import ConfigDBConnector
9
+from .mock_swsscommon import ConfigDBConnector
10
11
12
class TestSecurityCipher(object):
0 commit comments