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 5c6f5e0 commit 6c8801b
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 @@ -480,8 +480,8 @@ def _init_test_message(voc, location):

self.assertEqual(profile["location"]["city"], "Phoenix")
self.assertEqual(profile["location"]["state"], "Arizona")
self.assertAlmostEqual(profile["location"]["lat"], 33.4484367, 4)
self.assertAlmostEqual(profile["location"]["lng"], -112.074141, 4)
self.assertAlmostEqual(profile["location"]["lat"], 33.4484367, 3)
self.assertAlmostEqual(profile["location"]["lng"], -112.074141, 3)
self.assertEqual(profile["location"]["tz"], "America/Phoenix")
self.assertEqual(profile["location"]["utc"], -7.0)

Expand Down

0 comments on commit 6c8801b

Please sign in to comment.