Skip to content

Commit 28f54da

Browse files
committed
dictserial_app test: minor print change
1 parent 384296f commit 28f54da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cdl/tests/backbone/dictlistserial_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __compare_metadata(dict1, dict2):
3737
else:
3838
same_value = str(dict_a[key]) == str(dict_b[key])
3939
if not same_value:
40-
print("Different values for key %s" % key)
40+
print(f"Different values for key {key}: {dict_a[key]} != {dict_b[key]}")
4141
same = same and same_value
4242
return same
4343

0 commit comments

Comments
 (0)