From 9e6f31eef0ad580f96e48d5581d15dae2bcbacd3 Mon Sep 17 00:00:00 2001 From: philipbjorge Date: Tue, 1 Jul 2014 19:41:43 -0700 Subject: [PATCH] Fixed flake8 errors --- test/test_library.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_library.py b/test/test_library.py index c5faa7f71..0b4be9fb8 100644 --- a/test/test_library.py +++ b/test/test_library.py @@ -1013,13 +1013,15 @@ class TemplateTest(_common.LibTestCase): self.album.store() self.assertEqual(self.i.evaluate_template('$foo'), 'baz') -class UnicodeReadWriteTest(_common.LibTestCase): + +class UnicodePathTest(_common.LibTestCase): def test_unicode_path(self): self.i.path = os.path.join(_common.RSRC, 'unicode’d.mp3') # if there are any problems with unicode paths, we will raise here and fail self.i.read() self.i.write() + class WriteTest(_common.LibTestCase): def test_write_nonexistant(self): self.i.path = '/path/does/not/exist'