Skip to content

Commit

Permalink
fix inventory integration test error Type Error PrettyOrderedList not…
Browse files Browse the repository at this point in the history
… serializable
  • Loading branch information
joek-office committed Feb 19, 2024
1 parent cdec142 commit b79c1ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def main():

if result:
# Dictionary is not empty - print differences
print(json.dumps(result, sort_keys=True, indent=4))
print(json.dumps(list(result), sort_keys=True, indent=4))
sys.exit(1)
else:
# Success, no differences
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def main():

if result:
# Dictionary is not empty - print differences
print(json.dumps(result, sort_keys=True, indent=4))
print(json.dumps(list(result), sort_keys=True, indent=4))
sys.exit(1)
else:
# Success, no differences
Expand Down

0 comments on commit b79c1ab

Please sign in to comment.