summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_output.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_output.py b/tests/test_output.py
index 3955357a..afccca7e 100644
--- a/tests/test_output.py
+++ b/tests/test_output.py
@@ -17,7 +17,9 @@ class OutputTest(TestCase):
stitch_groups = element.embroider(None)
stitch_plan = stitch_groups_to_stitch_plan(stitch_groups)
path = self.temp_file(suffix=f".{format}")
- output.write_embroidery_file(path, stitch_plan, svg)
+ output.write_embroidery_file(path, stitch_plan, svg, settings={
+ "date": "", # we need the output to be deterministic for the tests
+ })
with open(path, "rb") as f:
return f.read()