File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 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):
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 )
You can’t perform that action at this time.
0 commit comments