diff --git a/AUTHORS.rst b/AUTHORS.rst index fda4f9a..6b2aacf 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -5,7 +5,7 @@ contributions from `Eric Davis`_, `Paul Oswald`_, `Uros Trebec`_, Gaitán`_, `Craig Bruce`_, `Peter Bittner`_, `Scott Adams`_, `Eric Amador`_, `Alexandre Pocquet`_, `Brad Pitcher`_, `Hugo Osvaldo Barrera`_, `Nikolay Korotkiy`_, `Steve Schwarz`_, `Aleck Landgraf`_, -`Marc Bourqui`_, `Diederik van der Boor`_ and others. +`Marc Bourqui`_, `Diederik van der Boor`_, `Matthäus G. Chajdas`_ and others. Included Javascript code snippets for integration of the analytics services were written by the respective service providers. @@ -40,6 +40,7 @@ The work on Intercom was made possible by `GreenKahuna`_. .. _`Aleck Landgraf`: https://github.com/alecklandgraf .. _`Marc Bourqui`: https://github.com/mbourqui .. _`Diederik van der Boor`: https://github.com/vdboor +.. _`Matthäus G. Chajdas`: https://github.com/Anteru .. _`Analytical`: https://github.com/jkrall/analytical .. _`Bateau Knowledge`: http://www.bateauknowledge.nl/ .. _`GreenKahuna`: http://www.greenkahuna.com/ diff --git a/analytical/tests/test_tag_piwik.py b/analytical/tests/test_tag_piwik.py index 6ba2d85..32661ee 100644 --- a/analytical/tests/test_tag_piwik.py +++ b/analytical/tests/test_tag_piwik.py @@ -147,6 +147,6 @@ class PiwikTagTestCase(TagTestCase): self.assertNotIn(var_code, r, msg % (var_code, r)) @override_settings(PIWIK_DISABLE_COOKIES=True) - def test_disable_coolies(self): + def test_disable_cookies(self): r = PiwikNode().render(Context({})) self.assertTrue("_paq.push(['disableCookies']);" in r, r)