From cb2045e134bd026d9aa58b8dba913d4d7ea2f1ac Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Sun, 27 Apr 2014 16:58:14 -0500 Subject: [PATCH] Fix typo in BaseAuthTokenMiddlewareTest Setup was used where setUp is the name of the function. Change-Id: Ie8aef4e128a443ddec48fc82cb7314081ee5bfd2 --- keystoneclient/tests/test_auth_token_middleware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystoneclient/tests/test_auth_token_middleware.py b/keystoneclient/tests/test_auth_token_middleware.py index 69f25a93..6bfb2d6c 100644 --- a/keystoneclient/tests/test_auth_token_middleware.py +++ b/keystoneclient/tests/test_auth_token_middleware.py @@ -250,7 +250,7 @@ class BaseAuthTokenMiddlewareTest(testtools.TestCase): All the tests allow for running with auth_token configured for receiving v2 or v3 tokens, with the choice being made by passing configuration data into - Setup(). + setUp(). The base class will, by default, run all the tests expecting v2 token formats. Child classes can override