Skip to content

Commit

Permalink
Change TickScale test for Python 3.7 failure
Browse files Browse the repository at this point in the history
  • Loading branch information
RedFantom committed Dec 7, 2019
1 parent 0e558ec commit a082a8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_tickscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def test_tickscale_methods(self):
'tickinterval',
'showvalue',
'digits']
self.assertEqual(sorted(scale.keys()), sorted(keys))
self.assertTrue(
all(key in scale.keys() for key in keys) and
all(key in keys for key in scale.keys()))

scale.config(from_=-1)
self.window.update()
Expand Down

0 comments on commit a082a8f

Please sign in to comment.