We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702893d commit 2254703Copy full SHA for 2254703
tests/test_model_tool_repository.py
@@ -82,8 +82,9 @@ def test_assign_service(self) -> None:
82
83
def test_invalid_tool_repo_properties(self) -> None:
84
with self.assertRaises(MutuallyExclusivePropertiesException):
85
- tr = ToolsRepository(components=[Component(name='test-component')], # pylint: disable=unused-variable # noqa: disable=E841
86
- services=[Service(name='test-service')], tools=[Tool()])
+ ToolsRepository(
+ components=[Component(name='test-component')],
87
+ services=[Service(name='test-service')], tools=[Tool()])
88
89
def test_assign_component_with_existing_tool(self) -> None:
90
tr = ToolsRepository(tools=[Tool()])
0 commit comments