diff --git a/kyu_3/calculator/test_calculator.py b/kyu_3/calculator/test_calculator.py index cc2c6a2ad5a..005916c2ec4 100644 --- a/kyu_3/calculator/test_calculator.py +++ b/kyu_3/calculator/test_calculator.py @@ -1,5 +1,6 @@ """ -Testing for -> Calculator class +Testing for -> Calculator class. + Created by Egor Kostan. GitHub: https://github.com/ikostan """ @@ -36,7 +37,8 @@ class CalculatorTestCase(unittest.TestCase): def test_calculator(self): """ - Testing Calculator class + Testing Calculator class. + A simple calculator that given a string of operators '()', '+', '-', '*', '/' and numbers separated by spaces will return the value of that expression :return: None