From 5c6f5e04a75a2ff6e8aa63e3c3dbc58622132b5c Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 10 May 2024 10:35:19 -0700 Subject: [PATCH] Update tests to resolve failure --- test/test_skill.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_skill.py b/test/test_skill.py index 0920e33..51a31bf 100644 --- a/test/test_skill.py +++ b/test/test_skill.py @@ -406,8 +406,8 @@ def _init_test_message(voc, location): test_profile["location"][setting]) self.assertEqual(profile["location"]["city"], "New York") self.assertEqual(profile["location"]["state"], "New York") - self.assertAlmostEqual(profile["location"]["lat"], 40.7127281, 4) - self.assertAlmostEqual(profile["location"]["lng"], -74.0060152, 4) + self.assertAlmostEqual(profile["location"]["lat"], 40.7127281, 3) + self.assertAlmostEqual(profile["location"]["lng"], -74.0060152, 3) self.skill.ask_yesno.reset_mock() self.skill.speak_dialog.reset_mock()