Update the tests for gcode
This commit is contained in:
parent
9bf7813260
commit
89f77bb1fa
2 changed files with 11 additions and 5 deletions
|
@ -22,10 +22,6 @@
|
|||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.div .job {
|
||||
|
||||
}
|
||||
|
||||
.div .job:not(:last-child) {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
|
|
@ -47,9 +47,19 @@ more garbage
|
|||
; first_layer_temperature = 195
|
||||
; filament_type = PETG
|
||||
; nozzle_diameter = 1.0
|
||||
; filament_colour = #DDDDDD
|
||||
; prusaslicer_config = end
|
||||
|
||||
"""
|
||||
)
|
||||
== GcodeAnalysis(100, 100, 100, 100, 195, "PETG", 1.0)
|
||||
== GcodeAnalysis(
|
||||
max_x=100,
|
||||
max_y=100,
|
||||
max_z=100,
|
||||
max_bed=100,
|
||||
max_end=195,
|
||||
filament="PETG",
|
||||
color="#DDDDDD",
|
||||
nozzle=1.0,
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue