Remove unused TOKEN_CHARS_RE
TOKEN_CHARS_RE is not used in rest_client.py, and this patch
removes it.
Change-Id: I33db1b937efc6393d979da6c3f6b55cf31b5779c
diff --git a/tempest/common/rest_client.py b/tempest/common/rest_client.py
index 4c3905c..93ebcfc 100644
--- a/tempest/common/rest_client.py
+++ b/tempest/common/rest_client.py
@@ -33,7 +33,6 @@
# redrive rate limited calls at most twice
MAX_RECURSION_DEPTH = 2
-TOKEN_CHARS_RE = re.compile('^[-A-Za-z0-9+/=]*$')
# All the successful HTTP status codes from RFC 7231 & 4918
HTTP_SUCCESS = (200, 201, 202, 203, 204, 205, 206, 207)