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 b19e65a commit d737343Copy full SHA for d737343
tests/test_common.py
@@ -1,10 +1,9 @@
1
import unittest
2
-# from src.common import hello_func
+from src.common import hello_func
3
4
5
class CommonTests(unittest.TestCase):
6
7
def test_success(self):
8
- # response = hello_func("TEST")
9
- # self.assertEqual({"message": "HELLO FROM TEST"}, response)
10
- self.assertEqual(1, 1)
+ response = hello_func("TEST")
+ self.assertEqual({"message": "HELLO FROM TEST"}, response)
0 commit comments