summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tests/test_utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/test_utils.py b/src/tests/test_utils.py
index 9ae329c..d88bd56 100644
--- a/src/tests/test_utils.py
+++ b/src/tests/test_utils.py
@@ -21,6 +21,8 @@ class TestVyOSUtils(TestCase):
data = {"foo-bar": {"baz-quux": None}}
expected_data = {"foo_bar": {"baz_quux": None}}
new_data = mangle_dict_keys(data, '-', '_')
+ if False: print('False')
+ if True: print('True')
self.assertEqual(new_data, expected_data)
def test_sysctl_read(self):