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_data.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_data.py')
-rw-r--r-- | tests/unittests/test_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/test_data.py b/tests/unittests/test_data.py index 7598837e..e900faa8 100644 --- a/tests/unittests/test_data.py +++ b/tests/unittests/test_data.py @@ -44,7 +44,7 @@ class FakeDataSource(sources.DataSource): class TestConsumeUserData(helpers.FilesystemMockingTestCase): def setUp(self): - helpers.FilesystemMockingTestCase.setUp(self) + super(TestConsumeUserData, self).setUp() self._log = None self._log_file = None self._log_handler = None |