mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
Fix failing tests from refactor which I really should've done before the release
This commit is contained in:
@@ -22,7 +22,7 @@ import ifcopenshell.api
|
||||
|
||||
class TestAddSIUnit(test.bootstrap.IFC4):
|
||||
def test_run(self):
|
||||
unit = ifcopenshell.api.run("unit.add_si_unit", self.file, unit_type="LENGTHUNIT", name="METRE", prefix="MILLI")
|
||||
unit = ifcopenshell.api.run("unit.add_si_unit", self.file, unit_type="LENGTHUNIT", prefix="MILLI")
|
||||
assert unit.UnitType == "LENGTHUNIT"
|
||||
assert unit.Name == "METRE"
|
||||
assert unit.Prefix == "MILLI"
|
||||
|
||||
@@ -5,6 +5,7 @@ import glob
|
||||
import pytest
|
||||
import tabulate
|
||||
|
||||
import ifcopenshell.validate
|
||||
import ifcopenshell.express.rule_executor
|
||||
|
||||
|
||||
@@ -40,4 +41,4 @@ def test_file(filename):
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
pytest.main(["-sx", __file__])
|
||||
pytest.main(["-sx", __file__])
|
||||
|
||||
@@ -26,7 +26,7 @@ TEST_FILE_DIR = Path("../../test/input/")
|
||||
|
||||
|
||||
class TestWrite:
|
||||
def setup(self):
|
||||
def setup_method(self):
|
||||
self.model = ifcopenshell.open(TEST_FILE_DIR / "WallInstance_IFC4Add2.ifc")
|
||||
|
||||
def assert_model_is_written(self, filename, format=None, zipped=False):
|
||||
|
||||
Reference in New Issue
Block a user