From f368de9a2d84ad40b7ff419617f998dab4ff1579 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Mon, 31 Jan 2022 11:51:48 +0100 Subject: [PATCH] Follow-up to 3e7a4d4648904b64c9f2d1c2948d81878f2a5eeb Fixed Perl integration tests, missing G92 E0 in layer_change G-code for relative extruder addressing. --- t/gcode.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/gcode.t b/t/gcode.t index e9725d5ed..b95505e43 100644 --- a/t/gcode.t +++ b/t/gcode.t @@ -133,7 +133,7 @@ use Slic3r::Test; my $config = Slic3r::Config::new_from_defaults; $config->set('retract_length', [1000000]); $config->set('use_relative_e_distances', 1); - $config->set('layer_gcode', 'G92 E0\n'); + $config->set('layer_gcode', "G92 E0\n"); my $print = Slic3r::Test::init_print('20mm_cube', config => $config); Slic3r::Test::gcode($print); ok $print->print->total_used_filament > 0, 'final retraction is not considered in total used filament';