From 3807d4fc57be97bb72b24178d508f3f0f172c21b Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Sat, 2 Jan 2016 21:50:13 -0800 Subject: [PATCH] fix flake8 warnings --- test/test_play.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_play.py b/test/test_play.py index 8a37509cd..68d8c2ea8 100644 --- a/test/test_play.py +++ b/test/test_play.py @@ -10,8 +10,6 @@ from mock import patch, Mock from test._common import unittest from test.helper import TestHelper -from beetsplug.play import PlayPlugin - class PlayPluginTest(unittest.TestCase, TestHelper): def setUp(self): @@ -27,6 +25,7 @@ class PlayPluginTest(unittest.TestCase, TestHelper): def test_basic(self): self.run_command('play', 'title:aNiceTitle') + def suite(): return unittest.TestLoader().loadTestsFromName(__name__)