From 0dd42c1fb2ce5a803d558c5a4ff2c910f8b4546c Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 2 Apr 2025 16:15:16 +0500 Subject: [PATCH] fix core system tests after 5b9ef23 --- src/bonsai/test/core/test_system.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bonsai/test/core/test_system.py b/src/bonsai/test/core/test_system.py index ace4461aeb..ae86c7ebe1 100644 --- a/src/bonsai/test/core/test_system.py +++ b/src/bonsai/test/core/test_system.py @@ -74,14 +74,14 @@ class TestDisableEditingSystem: class TestAssignSystem: def test_run(self, ifc): - ifc.run("system.assign_system", products=["product"], system="system").should_be_called() - subject.assign_system(ifc, system="system", product="product") + ifc.run("system.assign_system", products="products", system="system").should_be_called() + subject.assign_system(ifc, system="system", products="products") class TestUnassignSystem: def test_run(self, ifc): - ifc.run("system.unassign_system", products=["product"], system="system").should_be_called() - subject.unassign_system(ifc, system="system", product="product") + ifc.run("system.unassign_system", products="products", system="system").should_be_called() + subject.unassign_system(ifc, system="system", products="products") class TestSelectSystemProducts: