test_parameters: Alias long to int under Python 3

In py3, the two types are unified under the name "int".

Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
Petr Viktorin
2015-10-08 15:39:14 +02:00
committed by Tomas Babej
parent acf519f5c5
commit ea2edc9ea2

View File

@@ -44,6 +44,7 @@ from ipalib import _
if six.PY3:
unicode = str
long = int
NULLS = (None, b'', u'', tuple(), [])