From f2b9f79fb33684ec363c35cdaeb8b8e56e1e3527 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 24 Mar 2017 12:28:26 +0100 Subject: [PATCH] Document test_addExtruder better Contributes to issue CURA-3497. --- tests/Settings/TestGlobalStack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Settings/TestGlobalStack.py b/tests/Settings/TestGlobalStack.py index cb64d78c2b..83b5226109 100644 --- a/tests/Settings/TestGlobalStack.py +++ b/tests/Settings/TestGlobalStack.py @@ -59,7 +59,7 @@ def test_addExtruder(global_stack): global_stack.addExtruder(unittest.mock.MagicMock()) global_stack.addExtruder(unittest.mock.MagicMock()) - with pytest.raises(TooManyExtrudersError): + with pytest.raises(TooManyExtrudersError): #Should be limited to 2 extruders because of machine_extruder_count. global_stack.addExtruder(unittest.mock.MagicMock()) ## Tests whether the user changes are being read properly from a global stack.