mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 05:23:58 -06:00
Avoid SyntaxWarning on Python >= 3.8
This commit is contained in:
parent
8b10bef0a6
commit
e78248eaf3
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ class TestCalculateExtraZClearance:
|
|||
return properties.get(args[2])
|
||||
|
||||
def test_noContainerStack(self, build_volume: BuildVolume):
|
||||
assert build_volume._calculateExtraZClearance([]) is 0
|
||||
assert build_volume._calculateExtraZClearance([]) == 0
|
||||
|
||||
def test_withRetractionHop(self, build_volume: BuildVolume):
|
||||
mocked_global_stack = MagicMock(name="mocked_global_stack")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue