summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Müller <elias.mr1@gmail.com>2022-07-09 18:57:05 +0200
committerjaseg <136313+jaseg@users.noreply.github.com>2022-07-11 12:44:47 +0200
commit5d9cd2b25219690fa98fe62b58dbc323b4a04462 (patch)
treecd7e6017867a56ee661b73d0c33a4e0e88f948ad
parent0e19248d690eb7263c2ee31e0d5841bfea1889c6 (diff)
downloadpython-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.tar.gz
python-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.tar.bz2
python-mpv-5d9cd2b25219690fa98fe62b58dbc323b4a04462.zip
Remove unused variables
-rwxr-xr-xtests/test_mpv.py3
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):