From 039dbbbe7ea6455f3587b862e7920705291ca941 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 May 2022 02:40:23 +0200 Subject: [PATCH] fix doctest --- InvenTree/plugin/base/integration/test_mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/base/integration/test_mixins.py b/InvenTree/plugin/base/integration/test_mixins.py index dbe96c928f..fbce6c70a9 100644 --- a/InvenTree/plugin/base/integration/test_mixins.py +++ b/InvenTree/plugin/base/integration/test_mixins.py @@ -209,7 +209,7 @@ class APICallMixinTest(BaseMixinDefinition, TestCase): self.assertTrue(result) self.assertIn('data', result,) - # api_call without response + # api_call without json conversion result = self.mixin.get_external_url(False) self.assertTrue(result) self.assertEqual(result.reason, 'OK')