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:
authorAlessandro Ranellucci <aar@cpan.org>2013-03-10 01:05:41 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-03-10 01:05:41 +0400
commit06a592f25e03ae3a69f05ed8d96b1a63bd9ba87d (patch)
treecc97dccd373ce64f84ac24fb9b243d9bb931d1be /t/custom_gcode.t
parente9c7460c110c294f704943ce93060d7f0a737ca9 (diff)
Update tests
Diffstat (limited to 't/custom_gcode.t')
-rw-r--r--t/custom_gcode.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/custom_gcode.t b/t/custom_gcode.t
index 69ab8fac8..6c1e1818f 100644
--- a/t/custom_gcode.t
+++ b/t/custom_gcode.t
@@ -36,7 +36,8 @@ use Slic3r::Test;
1;
};
- $config->set('layer_gcode', '_MY_CUSTOM_GCODE_');
+ $config->set('start_gcode', '_MY_CUSTOM_START_GCODE_'); # to avoid dealing with the nozzle lift in start G-code
+ $config->set('layer_gcode', '_MY_CUSTOM_LAYER_GCODE_');
ok $test->(), "custom layer G-code is applied after Z move and before other moves";
}