mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-12 02:23:34 +00:00
Fix bug where schema instead of schema_identifer was used to get the schema_by_name. Fix tests to use IFC4X3_ADD2 so that you only need the official version compiled
This commit is contained in:
@@ -166,10 +166,10 @@ class TestFile(test.bootstrap.IFC4):
|
||||
assert f.schema_version == (4, 3, 2, 0)
|
||||
|
||||
def test_creating_a_specific_version(self):
|
||||
f = ifcopenshell.file(schema_version=(4, 3, 1, 0))
|
||||
f = ifcopenshell.file(schema_version=(4, 3, 2, 0))
|
||||
assert f.schema == "IFC4X3"
|
||||
assert f.schema_identifier == "IFC4X3_ADD1"
|
||||
assert f.schema_version == (4, 3, 1, 0)
|
||||
assert f.schema_identifier == "IFC4X3_ADD2"
|
||||
assert f.schema_version == (4, 3, 2, 0)
|
||||
|
||||
def test_creating_an_entity(self):
|
||||
element = self.file.create_entity("IfcPerson")
|
||||
|
||||
Reference in New Issue
Block a user