diff options
author | Barry Warsaw <barry@python.org> | 2015-01-26 20:05:48 -0500 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2015-01-26 20:05:48 -0500 |
commit | e2cfd12dc79a6350d9f1f3111a15bdb6666ccad7 (patch) | |
tree | ed032085bedc0da121ea431e19bdb8f041cf9c68 /tests/unittests/test_pathprefix2dict.py | |
parent | 5e2b8ef0703eb4582a5a8ba50ae7c83a8294d65a (diff) | |
download | vyos-cloud-init-e2cfd12dc79a6350d9f1f3111a15bdb6666ccad7.tar.gz vyos-cloud-init-e2cfd12dc79a6350d9f1f3111a15bdb6666ccad7.zip |
super() works in all of Python 2.6, 2.7, and 3.4.
Diffstat (limited to 'tests/unittests/test_pathprefix2dict.py')
-rw-r--r-- | tests/unittests/test_pathprefix2dict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_pathprefix2dict.py b/tests/unittests/test_pathprefix2dict.py index d38260e6..7089bde6 100644 --- a/tests/unittests/test_pathprefix2dict.py +++ b/tests/unittests/test_pathprefix2dict.py @@ -9,7 +9,7 @@ import tempfile class TestPathPrefix2Dict(TestCase): def setUp(self): - TestCase.setUp(self) + super(TestPathPrefix2Dict, self).setUp() self.tmp = tempfile.mkdtemp() self.addCleanup(shutil.rmtree, self.tmp) |