From 5d9cd2b25219690fa98fe62b58dbc323b4a04462 Mon Sep 17 00:00:00 2001 From: Elias Müller Date: Sat, 9 Jul 2022 18:57:05 +0200 Subject: Remove unused variables --- tests/test_mpv.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_mpv.py b/tests/test_mpv.py index bfd882c..ad71818 100755 --- a/tests/test_mpv.py +++ b/tests/test_mpv.py @@ -625,7 +625,6 @@ class TestLifecycle(unittest.TestCase): def test_wait_for_event(self): self.disp = Xvfb() self.disp.start() - handler = mock.Mock() m = mpv.MPV(vo=testvo) m.play(TESTVID) result = Future() @@ -648,7 +647,6 @@ class TestLifecycle(unittest.TestCase): def test_wait_for_property_shutdown(self): self.disp = Xvfb() self.disp.start() - handler = mock.Mock() m = mpv.MPV(vo=testvo) m.play(TESTVID) with self.assertRaises(mpv.ShutdownError): @@ -690,7 +688,6 @@ class TestLifecycle(unittest.TestCase): def test_wait_for_shutdown(self): self.disp = Xvfb() self.disp.start() - handler = mock.Mock() m = mpv.MPV(vo=testvo) m.play(TESTVID) with self.assertRaises(mpv.ShutdownError): -- cgit