mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Add test for very large material diameters
Shouldn't matter with Python, but you never know. Contributes to issue CURA-2822.
This commit is contained in:
parent
adb93507c8
commit
3e278cbd0a
1 changed files with 2 additions and 1 deletions
|
|
@ -97,7 +97,8 @@ def test_addExtruder(global_stack):
|
||||||
#Exceptional cases.
|
#Exceptional cases.
|
||||||
(0, 0),
|
(0, 0),
|
||||||
(-10.1, -10),
|
(-10.1, -10),
|
||||||
(-1, -1)
|
(-1, -1),
|
||||||
|
(9000.1, 9000)
|
||||||
])
|
])
|
||||||
def test_approximateMaterialDiameter(diameter, approximate_diameter, global_stack):
|
def test_approximateMaterialDiameter(diameter, approximate_diameter, global_stack):
|
||||||
global_stack.definition = DefinitionContainer(container_id = "TestDefinition")
|
global_stack.definition = DefinitionContainer(container_id = "TestDefinition")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue