From 97f103dfd7860d692b7cf60fd544785af80791f3 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 24 Oct 2025 17:46:15 -0700 Subject: [PATCH] Update test_bot.py --- modules/test_bot.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)