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',