This commit is contained in:
Matthias 2021-10-03 15:02:47 +02:00
parent c5fc8ba6ab
commit b31c7ccd24
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -25,7 +25,7 @@ class SimpleActionPluginTests(TestCase):
def test_function(self):
"""check if functions work """
# test functions
response = self.client.post('/api/action/', data={'action': "simple", 'data': {'foo': "bar",}})
response = self.client.post('/api/action/', data={'action': "simple", 'data': {'foo': "bar", }})
self.assertEqual(response.status_code, 200)
self.assertJSONEqual(
str(response.content, encoding='utf8'),