File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -45,23 +45,20 @@ def test_find_key_simple(self):
45
45
"""Simple test case"""
46
46
test_dict = {"key1" : "value1" , "nested" : {"key2" : "value2" , "key3" : "value4" }}
47
47
result = utils .has_key_value (test_dict , "key2" , "value2" )
48
- print (result )
49
48
self .assertIsNotNone (result )
50
49
self .assertTrue (result )
51
50
52
51
def test_find_object_filter (self ):
53
52
"""Find first orderBy operation in a real-ish object filter"""
54
53
55
54
result = utils .has_key_value (TEST_FILTER )
56
- print (result )
57
55
self .assertIsNotNone (result )
58
56
self .assertTrue (result )
59
57
60
58
def test_not_found (self ):
61
59
"""Nothing to be found"""
62
60
test_dict = {"key1" : "value1" , "nested" : {"key2" : "value2" , "key3" : "value4" }}
63
61
result = utils .has_key_value (test_dict , "key23" , "value2" )
64
- print (result )
65
62
self .assertFalse (result )
66
63
67
64
def test_fix_filter (self ):
@@ -81,7 +78,6 @@ def test_billing_filter(self):
81
78
}
82
79
83
80
fixed_filter = utils .fix_filter (billing_filter )
84
- print (fixed_filter )
85
81
# Make sure we didn't add any more items
86
82
self .assertEqual (len (fixed_filter ), 1 )
87
83
self .assertEqual (len (fixed_filter .get ('allTopLevelBillingItems' )), 2 )
You can’t perform that action at this time.
0 commit comments