Fixed flake8 errors

This commit is contained in:
philipbjorge 2014-07-01 19:41:43 -07:00
parent 16ef9a7aeb
commit 9e6f31eef0

View file

@ -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, 'unicoded.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'