Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 't/custom_gcode.t')
-rw-r--r--t/custom_gcode.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/custom_gcode.t b/t/custom_gcode.t
index f19971853..9f66a47df 100644
--- a/t/custom_gcode.t
+++ b/t/custom_gcode.t
@@ -62,7 +62,7 @@ use Slic3r::Test;
is $parser->process('{2*3}'), '6', 'math: 2*3';
is $parser->process('{2*3/6}'), '1', 'math: 2*3/6';
is $parser->process('{2*3/12}'), '0', 'math: 2*3/12';
- is $parser->process('{2.*3/12}'), '0.5', 'math: 2.*3/12';
+ ok abs($parser->process('{2.*3/12}') - 0.5) < 1e-7, 'math: 2.*3/12';
is $parser->process('{2*(3-12)}'), '-18', 'math: 2*(3-12)';
is $parser->process('{2*foo*(3-12)}'), '0', 'math: 2*foo*(3-12)';
is $parser->process('{2*bar*(3-12)}'), '-36', 'math: 2*bar*(3-12)';