|
@@ -1222,8 +1222,8 @@ class Utils(object):
|
|
|
elif value != user_def[key]:
|
|
|
if debug:
|
|
|
print('value should be identical')
|
|
|
- print(value)
|
|
|
print(user_def[key])
|
|
|
+ print(value)
|
|
|
return False
|
|
|
|
|
|
# recurse on a dictionary
|
|
@@ -1243,8 +1243,8 @@ class Utils(object):
|
|
|
if api_values != user_values:
|
|
|
if debug:
|
|
|
print("keys are not equal in dict")
|
|
|
- print(api_values)
|
|
|
print(user_values)
|
|
|
+ print(api_values)
|
|
|
return False
|
|
|
|
|
|
result = Utils.check_def_equal(user_def[key], value, skip_keys=skip_keys, debug=debug)
|