Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwutk committed Aug 10, 2023
1 parent 0aefebe commit 5c1c10d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/workflow/test_optimized_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_optimized_workflow():
assert p.bbox_w == g.bbox_w, (p.bbox_width, g.bbox_w)
assert p.bbox_h == g.bbox_h, (p.bbox_height, g.bbox_h)
assert p.object_type == g.object_type, (p.object_type, g.object_type)
assert str(p.timestamp) == g.timestamp, (p.timestamp, g.timestamp)
assert p.timestamp == g.timestamp, (p.timestamp, g.timestamp)

with open(os.path.join(OUTPUT_DIR, 'optimized-workflow-objects.json'), 'w') as f:
json.dump(objects, f, indent=1)
Expand Down
2 changes: 1 addition & 1 deletion tests/workflow/test_simple_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_simple_workflow():
assert p.bbox_w == g.bbox_w, (p.bbox_width, g.bbox_w)
assert p.bbox_h == g.bbox_h, (p.bbox_height, g.bbox_h)
assert p.object_type == g.object_type, (p.object_type, g.object_type)
assert str(p.timestamp) == g.timestamp, (p.timestamp, g.timestamp)
assert p.timestamp == g.timestamp, (p.timestamp, g.timestamp)

with open(os.path.join(OUTPUT_DIR, 'simple-workflow-objects.json'), 'w') as f:
json.dump(objects, f, indent=1)
Expand Down

0 comments on commit 5c1c10d

Please sign in to comment.