summaryrefslogtreecommitdiff
path: root/cloudinit/tests
diff options
context:
space:
mode:
authorJoshua Powers <josh.powers@canonical.com>2020-06-02 08:24:29 -0700
committerGitHub <noreply@github.com>2020-06-02 11:24:29 -0400
commit5f7825e22241423322dbe628de1b00289cf34114 (patch)
tree1a2e8d8b3fc29f02256383df4012399b39600967 /cloudinit/tests
parentd2b05719a6163e874ca40234a0b85dc2fea260c0 (diff)
downloadvyos-cloud-init-5f7825e22241423322dbe628de1b00289cf34114.tar.gz
vyos-cloud-init-5f7825e22241423322dbe628de1b00289cf34114.zip
test: fix all flake8 E241 (#403)
Remove extra spaces after a ','
Diffstat (limited to 'cloudinit/tests')
-rw-r--r--cloudinit/tests/test_url_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/tests/test_url_helper.py b/cloudinit/tests/test_url_helper.py
index 29b39374..364ec822 100644
--- a/cloudinit/tests/test_url_helper.py
+++ b/cloudinit/tests/test_url_helper.py
@@ -85,7 +85,7 @@ class TestReadFileOrUrl(CiTestCase):
read_file_or_url(url, headers=headers, headers_redact=['sensitive'])
logs = self.logs.getvalue()
for k in headers.keys():
- self.assertEqual(headers[k], httpretty.last_request().headers[k])
+ self.assertEqual(headers[k], httpretty.last_request().headers[k])
self.assertIn(REDACTED, logs)
self.assertNotIn('sekret', logs)