From 2e4c8a924e2c11e0cbabfd1353de49602d1aaef1 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Mon, 5 Aug 2019 14:47:51 -0700 Subject: [PATCH] py3: port RBAC func tests Yes, it really is just the import. Change-Id: Id7e2891b6600af102176eaa2e87f81b528adde8d --- test/functional/test_access_control.py | 2 +- tox.ini | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/functional/test_access_control.py b/test/functional/test_access_control.py index 0aa746f518..76b3400c46 100644 --- a/test/functional/test_access_control.py +++ b/test/functional/test_access_control.py @@ -15,7 +15,7 @@ # limitations under the License. import unittest -from urlparse import urlparse, urlunparse +from six.moves.urllib.parse import urlparse, urlunparse import uuid from random import shuffle diff --git a/tox.ini b/tox.ini index ec08549c2a..70e40aad99 100644 --- a/tox.ini +++ b/tox.ini @@ -48,6 +48,7 @@ commands = ./.functests {posargs} basepython = python3 commands = nosetests {posargs: \ + test/functional/test_access_control.py \ test/functional/test_domain_remap.py \ test/functional/test_object.py \ test/functional/test_staticweb.py \