From 4009ec844fe24a407d265889013272e244aacbb2 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 23 Jun 2021 23:42:56 +1000 Subject: [PATCH] Test fixes --- InvenTree/InvenTree/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/test_api.py b/InvenTree/InvenTree/test_api.py index fc9177e5c2..c56412ea68 100644 --- a/InvenTree/InvenTree/test_api.py +++ b/InvenTree/InvenTree/test_api.py @@ -38,7 +38,7 @@ class APITests(InvenTreeAPITestCase): auth = b64encode(authstring).decode("ascii") self.client.credentials(HTTP_AUTHORIZATION="Basic {auth}".format(auth=auth)) - def test_tokenAuth(self): + def tokenAuth(self): self.basicAuth() token_url = reverse('api-token')