mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-22 22:12:32 +00:00
fix core system tests after 5b9ef23
This commit is contained in:
@@ -74,14 +74,14 @@ class TestDisableEditingSystem:
|
|||||||
|
|
||||||
class TestAssignSystem:
|
class TestAssignSystem:
|
||||||
def test_run(self, ifc):
|
def test_run(self, ifc):
|
||||||
ifc.run("system.assign_system", products=["product"], system="system").should_be_called()
|
ifc.run("system.assign_system", products="products", system="system").should_be_called()
|
||||||
subject.assign_system(ifc, system="system", product="product")
|
subject.assign_system(ifc, system="system", products="products")
|
||||||
|
|
||||||
|
|
||||||
class TestUnassignSystem:
|
class TestUnassignSystem:
|
||||||
def test_run(self, ifc):
|
def test_run(self, ifc):
|
||||||
ifc.run("system.unassign_system", products=["product"], system="system").should_be_called()
|
ifc.run("system.unassign_system", products="products", system="system").should_be_called()
|
||||||
subject.unassign_system(ifc, system="system", product="product")
|
subject.unassign_system(ifc, system="system", products="products")
|
||||||
|
|
||||||
|
|
||||||
class TestSelectSystemProducts:
|
class TestSelectSystemProducts:
|
||||||
|
|||||||
Reference in New Issue
Block a user