Fix variable name

The test was using the wrong variable for the TokenClient (token),
it has been merged since the patch who enables the feature was still
under review in DevStack. This patch fixes the issue by using the
correct variable name (non_admin_token).

Change-Id: Id97ca26f93b742cc3d8d49e98afc581f22360504
diff --git a/tempest/api/identity/v3/test_users.py b/tempest/api/identity/v3/test_users.py
index f5b357c..f389a8f 100644
--- a/tempest/api/identity/v3/test_users.py
+++ b/tempest/api/identity/v3/test_users.py
@@ -157,4 +157,4 @@
 
         # If we wait the required time, the user account will be unlocked
         time.sleep(CONF.identity.user_lockout_duration + 1)
-        self.token.auth(user_id=self.user_id, password=password)
+        self.non_admin_token.auth(user_id=self.user_id, password=password)