Remove "object" subclassing from Test classes missed initially

This commit is contained in:
Bruno Oliveira 2015-04-08 00:30:02 -03:00
parent 9d44f777c0
commit 75386e4051

View File

@ -81,7 +81,7 @@ class TestArg:
self.editor._proc.start.assert_called_with("bin", ["foo{}bar"])
class TestFileHandling(object):
class TestFileHandling:
"""Test creation/deletion of tempfile.
@ -131,7 +131,7 @@ class TestFileHandling(object):
assert not os.path.exists(filename)
class TestModifyTests(object):
class TestModifyTests:
"""Tests to test if the text gets saved/loaded correctly.