diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-03-19 12:01:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 12:01:15 -0400 |
commit | ade47866aa2f81ab0f3baabbb1fc1e484abdb741 (patch) | |
tree | 0c28ae27861335a73b035ad68d506cc4ab3bcdb5 /cloudinit/cmd/tests/test_main.py | |
parent | 9db87379b5c04f4c9662eaf81390e702ea63b8b3 (diff) | |
download | vyos-cloud-init-ade47866aa2f81ab0f3baabbb1fc1e484abdb741.tar.gz vyos-cloud-init-ade47866aa2f81ab0f3baabbb1fc1e484abdb741.zip |
cloudinit/tests: remove unneeded with_logs configuration (#263)
These classes don't use `self.logs` anywhere in their body, so we can
remove the `with_logs = True` setting from them.
These instances were found using astpath[0], with the following
invocation:
astpath "//Name[@id='with_logs' and not(ancestor::ClassDef//Attribute[@attr='logs'])]"
[0] https://github.com/hchasestevens/astpath
Diffstat (limited to 'cloudinit/cmd/tests/test_main.py')
-rw-r--r-- | cloudinit/cmd/tests/test_main.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cloudinit/cmd/tests/test_main.py b/cloudinit/cmd/tests/test_main.py index 384fddc6..585b3b0e 100644 --- a/cloudinit/cmd/tests/test_main.py +++ b/cloudinit/cmd/tests/test_main.py @@ -18,8 +18,6 @@ myargs = namedtuple('MyArgs', 'debug files force local reporter subcommand') class TestMain(FilesystemMockingTestCase): - with_logs = True - def setUp(self): super(TestMain, self).setUp() self.new_root = self.tmp_dir() |