diff --git a/modules/test_bot.py b/modules/test_bot.py index c819f88..1677871 100644 --- a/modules/test_bot.py +++ b/modules/test_bot.py @@ -93,11 +93,6 @@ class TestBot(unittest.TestCase): response = send_ollama_query("Hello, Ollama!") self.assertIsInstance(response, str) - def test_where_am_i(self): - from locationdata import where_am_i - location = where_am_i(lat, lon) - self.assertIsInstance(location, str) - def test_get_moon_phase(self): from space import get_moon phase = get_moon(lat, lon) @@ -340,6 +335,11 @@ class TestBot(unittest.TestCase): weather = get_NOAAweather(lat, lon) self.assertIsInstance(weather, str) + def test_where_am_i(self): + from locationdata import where_am_i + location = where_am_i(lat, lon) + self.assertIsInstance(location, str) + def test_getWeatherAlertsNOAA(self): from locationdata import getWeatherAlertsNOAA alerts = getWeatherAlertsNOAA(lat, lon)