From 2b2238049a36ddb540a4b31b4b3c980bc7705e98 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 29 Sep 2021 00:12:22 +0200 Subject: [PATCH] reading might help... --- InvenTree/plugins/test_action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugins/test_action.py b/InvenTree/plugins/test_action.py index 11641da406..fb0b7b5aa4 100644 --- a/InvenTree/plugins/test_action.py +++ b/InvenTree/plugins/test_action.py @@ -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',