Skip to content

Commit

Permalink
Update tests to resolve failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed May 10, 2024
1 parent 2e3c4b7 commit 5c6f5e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 5c6f5e0

Please sign in to comment.