Skip to content

Commit

Permalink
remove file write oput
Browse files Browse the repository at this point in the history
  • Loading branch information
InnocentBug committed Jul 28, 2023
1 parent 2c61f72 commit d3ba02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def integrate_nodes_helper(cript_api: cript.API, project_node: cript.Project):
]
# Compare the JSONs
diff = DeepDiff(json.loads(project_node.json), my_project_from_api_dict, exclude_regex_paths=exclude_regex_paths)
with open("la", "a") as file_handle:
file_handle.write(str(diff) + "\n")
# with open("la", "a") as file_handle:
# file_handle.write(str(diff) + "\n")

assert len(diff.get("values_changed", {})) == 0
assert len(diff.get("dictionary_item_removed")) == 0
Expand Down

0 comments on commit d3ba02d

Please sign in to comment.