summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sched.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_sched.py')
-rw-r--r--Lib/test/test_sched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sched.py b/Lib/test/test_sched.py
index 1fe6ad4..070886d 100644
--- a/Lib/test/test_sched.py
+++ b/Lib/test/test_sched.py
@@ -172,7 +172,7 @@ class TestCase(unittest.TestCase):
e3 = scheduler.enterabs(now + 0.03, 1, fun)
# queue property is supposed to return an order list of
# upcoming events
- self.assertEqual(list(scheduler.queue), [e1, e2, e3, e4, e5])
+ self.assertEqual(scheduler.queue, [e1, e2, e3, e4, e5])
def test_args_kwargs(self):
flag = []