Correct code alignment (PEP8)

This commit is contained in:
Scott Karlin 2019-04-08 09:08:34 -04:00 committed by Peter Bittner
parent ef0b19ccb2
commit 02b0768c97

View file

@ -98,8 +98,8 @@ class MatomoTagTestCase(TagTestCase):
def test_uservars(self):
context = Context({'matomo_vars': [(1, 'foo', 'foo_val'),
(2, 'bar', 'bar_val', 'page'),
(3, 'spam', 'spam_val', 'visit')]})
(2, 'bar', 'bar_val', 'page'),
(3, 'spam', 'spam_val', 'visit')]})
r = MatomoNode().render(context)
msg = 'Incorrect Matomo custom variable rendering. Expected:\n%s\nIn:\n%s'
for var_code in ['_paq.push(["setCustomVariable", 1, "foo", "foo_val", "page"]);',