From 75386e405101d983f6a30ae6e9c8a600446ed5a8 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 8 Apr 2015 00:30:02 -0300 Subject: [PATCH] Remove "object" subclassing from Test classes missed initially --- tests/misc/test_editor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/misc/test_editor.py b/tests/misc/test_editor.py index db6280339..417253d21 100644 --- a/tests/misc/test_editor.py +++ b/tests/misc/test_editor.py @@ -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.