Skip to content

Commit

Permalink
try passing the test
Browse files Browse the repository at this point in the history
  • Loading branch information
YuXHe15 committed Feb 13, 2024
1 parent c2b56be commit f2bdce4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_gcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@


def test_gcode(tmp_path):
gcd = GcodeFromPoints(**params)
caller_path = Path(os.path.dirname(__file__))
file_point = caller_path / "RandomPoints.csv"
params["in_file_path"] = file_point
gcd = GcodeFromPoints(**params)
file_gcode = tmp_path / "RandomPoints.gcode"
gcd.create(file_point, file_gcode)
assert file_gcode.exists()

0 comments on commit f2bdce4

Please sign in to comment.