Continue fixing failing tool tests. Fix regression where UV coordinates might have the wrong order.

This commit is contained in:
Dion Moult
2025-02-06 17:22:54 +11:00
parent 23efb09ba6
commit b7fb5c90bc
8 changed files with 39 additions and 30 deletions
+2 -2
View File
@@ -32,9 +32,9 @@ class TestImplementsTool(NewFile):
class TestClearEditingMode(NewFile):
def test_run(self):
props = bpy.context.scene.BIMLibraryProperties
props.editing_mode = "foo"
props.editing_mode = "LIBRARY"
subject.clear_editing_mode()
assert props.editing_mode == ""
assert props.editing_mode == "NONE"
class TestExportLibraryAttributes(NewFile):