From dcb8d73530a3734990e1bac999c633e736630944 Mon Sep 17 00:00:00 2001 From: Ryan Chausse Date: Sun, 9 Jul 2023 11:25:16 -0700 Subject: [PATCH] Fixed: spelling mistake in variable name in unit test --- tests/apod/test_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()