diff --git a/tests/apod/test_service.py b/tests/apod/test_service.py index 8d96f73..b6ddb91 100644 --- a/tests/apod/test_service.py +++ b/tests/apod/test_service.py @@ -12,5 +12,5 @@ class TestPageNotFound(unittest.TestCase): def test(self, mock_abort): GIVEN = Exception('example exception') - applicaiton.page_not_found(GIVEN) + application.page_not_found(GIVEN) mock_abort.assert_called_once()