reading might help...

This commit is contained in:
Matthias 2021-09-29 00:12:22 +02:00
parent 96efba5d85
commit 2b2238049a
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -53,7 +53,7 @@ class ActionPluginTests(TestCase):
# overriden functions
self.assertEqual(self.action_plugin.perform_action(), self.ACTION_RETURN + 'action')
self.assertEqual(self.action_plugin.get_result(), self.ACTION_RETURN + 'result')
self.assertIsNone(self.action_plugin.get_info(), self.ACTION_RETURN + 'info')
self.assertEqual(self.action_plugin.get_info(), self.ACTION_RETURN + 'info')
self.assertEqual(self.action_plugin.get_response(), {
"action": 'abc123',
"result": self.ACTION_RETURN + 'result',