Fix tests: Removing unnecessary default_value overrides

If there's a value, the default_value isn't used. This test exists to prevent confusion between the two, where a contributor could change the default_value but it gets overridden by a value.

Contributes to issue PP-1.
This commit is contained in:
Ghostkeeper 2021-10-01 13:52:42 +02:00
parent f9f59d0da1
commit 40fd3203b8
No known key found for this signature in database
GPG key ID: D2A8871EE34EC59A
3 changed files with 3 additions and 3 deletions

View file

@ -164,7 +164,7 @@
"meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 150" },
"wall_material_flow": {"value": "90"},
"travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" },
"retraction_combing": { "value": "no_outer_surfaces", "default_value": "no_outer_surfaces" },
"retraction_combing": { "value": "no_outer_surfaces" },
"wall_0_inset": { "value": "0" },
"wall_line_width_x": { "value": "round(wall_line_width * 0.3 / 0.35, 2)" },
"wall_thickness": { "value": "1" },

View file

@ -163,7 +163,7 @@
"meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 150" },
"meshfix_maximum_deviation": { "value": "layer_height / 4" },
"optimize_wall_printing_order": { "value": "True" },
"retraction_combing": { "value": "no_outer_surfaces", "default_value": "no_outer_surfaces" },
"retraction_combing": { "value": "no_outer_surfaces" },
"initial_layer_line_width_factor": { "value": "120" },
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
}

View file

@ -166,7 +166,7 @@
"meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 150" },
"meshfix_maximum_deviation": { "value": "layer_height / 4" },
"optimize_wall_printing_order": { "value": "True" },
"retraction_combing": { "value": "no_outer_surfaces", "default_value": "no_outer_surfaces" },
"retraction_combing": { "value": "no_outer_surfaces" },
"initial_layer_line_width_factor": { "value": "120" },
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" },
"build_volume_temperature": { "maximum_value": 50 }