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>2014-05-09 16:24:35 +0400
committerAlessandro Ranellucci <aar@cpan.org>2014-05-09 16:24:35 +0400
commit7ba08c90cff94d8e3e3c9c10e4076e9b3709db96 (patch)
treeb62c93c5eaf9b5f7dc21e6a7ec6c024ba15639b6 /t/custom_gcode.t
parentbc023c2d5144ddef3dc231fa1dc1c3e5e30f4d01 (diff)
Refactoring to Model API for making it stricter and safer
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 78610da1f..c693aecb9 100644
--- a/t/custom_gcode.t
+++ b/t/custom_gcode.t
@@ -57,7 +57,7 @@ use Slic3r::Test;
$config->set('start_gcode', "TRAVEL:[travel_speed] HEIGHT:[layer_height]\n");
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
- my $output_file = $print->expanded_output_filepath;
+ my $output_file = $print->print->expanded_output_filepath;
ok $output_file !~ /\[travel_speed\]/, 'print config options are replaced in output filename';
ok $output_file !~ /\[layer_height\]/, 'region config options are replaced in output filename';