mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-25 01:40:01 +00:00
Fix tests missing assert statement - add assert and fix them
This commit is contained in:
@@ -478,9 +478,9 @@ class TestGenerateSheetIdentification(NewFile):
|
||||
def test_run(self):
|
||||
ifc = ifcopenshell.file()
|
||||
tool.Ifc.set(ifc)
|
||||
subject.generate_sheet_identification() == "A01"
|
||||
assert subject.generate_sheet_identification() == "A01"
|
||||
document = ifc.createIfcDocumentInformation()
|
||||
subject.generate_sheet_identification() == "A02"
|
||||
assert subject.generate_sheet_identification() == "A02"
|
||||
|
||||
|
||||
class TestGetTextLiteral(NewFile):
|
||||
|
||||
Reference in New Issue
Block a user