diff options
author | Elias Müller <elias.mr1@gmail.com> | 2022-07-09 18:57:05 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2022-07-11 12:44:47 +0200 |
commit | 5d9cd2b25219690fa98fe62b58dbc323b4a04462 (patch) | |
tree | cd7e6017867a56ee661b73d0c33a4e0e88f948ad /tests | |
parent | 0e19248d690eb7263c2ee31e0d5841bfea1889c6 (diff) | |
download | python-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.tar.gz python-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.tar.bz2 python-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.zip |
Remove unused variables
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_mpv.py | 3 |
1 files changed, 0 insertions, 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): |