mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
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:
parent
f9f59d0da1
commit
40fd3203b8
3 changed files with 3 additions and 3 deletions
|
@ -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" },
|
||||
|
|
|
@ -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" }
|
||||
}
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue