Skip to content

Commit 2044aba

Browse files
Removed some debug code
1 parent 8764805 commit 2044aba

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/utils_tests.py

-4
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,20 @@ def test_find_key_simple(self):
4545
"""Simple test case"""
4646
test_dict = {"key1": "value1", "nested": {"key2": "value2", "key3": "value4"}}
4747
result = utils.has_key_value(test_dict, "key2", "value2")
48-
print(result)
4948
self.assertIsNotNone(result)
5049
self.assertTrue(result)
5150

5251
def test_find_object_filter(self):
5352
"""Find first orderBy operation in a real-ish object filter"""
5453

5554
result = utils.has_key_value(TEST_FILTER)
56-
print(result)
5755
self.assertIsNotNone(result)
5856
self.assertTrue(result)
5957

6058
def test_not_found(self):
6159
"""Nothing to be found"""
6260
test_dict = {"key1": "value1", "nested": {"key2": "value2", "key3": "value4"}}
6361
result = utils.has_key_value(test_dict, "key23", "value2")
64-
print(result)
6562
self.assertFalse(result)
6663

6764
def test_fix_filter(self):
@@ -81,7 +78,6 @@ def test_billing_filter(self):
8178
}
8279

8380
fixed_filter = utils.fix_filter(billing_filter)
84-
print(fixed_filter)
8581
# Make sure we didn't add any more items
8682
self.assertEqual(len(fixed_filter), 1)
8783
self.assertEqual(len(fixed_filter.get('allTopLevelBillingItems')), 2)

0 commit comments

Comments
 (0)