diff --git a/calculator/test_calculator.py b/calculator/test_calculator.py index 7da8b13eba91dcb4db4a3df6cef41734e3127f8c..5c86e05c4e2106254b4916af60539c6395f5b762 100644 --- a/calculator/test_calculator.py +++ b/calculator/test_calculator.py @@ -3,7 +3,7 @@ Test module for the calculator module. """ import pytest from calculator.calculator import Calculator -from calculator.operators import STANDARD_OPERATORS, Operator +from calculator.operators import STANDARD_OPERATORS @pytest.fixture(scope="module", name="setup") @@ -49,7 +49,7 @@ def test_evaluation(setup): """ Test the evaluation. """ - plus, minus, times, divide, calc = setup + _, _, _, divide, calc = setup assert calc("1 + 2") == 3 assert calc("5 - 1") == 4 assert calc("3 * 2") == 6