From 68940deb5b88176119fa186f3e4477defcc1a996 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 May 2022 02:56:05 +0200 Subject: [PATCH] rename test --- 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 d4338e3ac6..3464827bcc 100644 --- a/InvenTree/plugin/base/integration/test_mixins.py +++ b/InvenTree/plugin/base/integration/test_mixins.py @@ -202,7 +202,7 @@ class APICallMixinTest(BaseMixinDefinition, TestCase): result = self.mixin.api_build_url_args({'a': 'b', 'c': ['d', 'e', 'f', ]}) self.assertEqual(result, '?a=b&c=d,e,f') - def test_function(self): + def test_api_call(self): """Test that api calls work""" # api_call result = self.mixin.get_external_url()