Skip to content

Commit d737343

Browse files
eulogio-gutierrezdanPudwellUK
authored andcommitted
fixed tests
1 parent b19e65a commit d737343

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/test_common.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import unittest
2-
# from src.common import hello_func
2+
from src.common import hello_func
33

44

55
class CommonTests(unittest.TestCase):
66

77
def test_success(self):
8-
# response = hello_func("TEST")
9-
# self.assertEqual({"message": "HELLO FROM TEST"}, response)
10-
self.assertEqual(1, 1)
8+
response = hello_func("TEST")
9+
self.assertEqual({"message": "HELLO FROM TEST"}, response)

0 commit comments

Comments
 (0)