diff --git a/api/fast.py b/api/fast.py index dc3b65e..168d097 100644 --- a/api/fast.py +++ b/api/fast.py @@ -16,7 +16,7 @@ @app.get('/') def root(): response = { - 'greeting': 'Servus, griaß di!', # This is a typical Bavarian greeting ;) + 'greeting': 'Hello Lisbon!', 'timestamp': datetime.now() } diff --git a/tests/test_api_root.py b/tests/test_api_root.py index 87bc7b3..11ad35a 100644 --- a/tests/test_api_root.py +++ b/tests/test_api_root.py @@ -6,7 +6,7 @@ class TestApiRoot(unittest.TestCase): def test_api_root(self): - # Adding a 15s sleep timer to ensure + # Adding a 15s sleep timer to ensure # that the container has time to start up time.sleep(15) @@ -14,4 +14,4 @@ def test_api_root(self): url = 'http://localhost:8080' result = requests.get(url).json() - self.assertEqual(result['greeting'], 'Servus, griaß di!') + self.assertEqual(result['greeting'], 'Hello Lisbon!')