Skip to content

Commit

Permalink
fixed test case assert path comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
tholzheim committed Jul 16, 2024
1 parent 1b3931c commit fd879a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_volume_neo4j.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_parse_args(self):
"""
source = Volume.default_source()
args = Volume.parse_args(["--source", str(source)])
self.assertEqual(args.source, source)
self.assertEqual(args.source, str(source))

@requires_neo4j
def test_json_loading(self):
Expand Down

0 comments on commit fd879a2

Please sign in to comment.