Fixed a failing PlaceholderParser test case.

This commit is contained in:
bubnikv 2017-11-29 16:35:48 +01:00
parent 08e81f2765
commit 6729dc1c6d

View File

@ -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)';