summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration/test_topologies.py
diff options
context:
space:
mode:
authorDavid Kupka <dkupka@redhat.com>2016-02-24 08:15:51 +0100
committerMartin Basti <mbasti@redhat.com>2016-02-24 10:37:04 +0100
commit775ee77bcc091ba31fdd3e59f8d45d0b646a44a0 (patch)
tree15edb29cbf5c7e8a4c3bcdb3ffa4e25d9474e3fb /ipatests/test_integration/test_topologies.py
parentef9134640795b736731bfbdb6fe0badb3e817552 (diff)
downloadfreeipa-775ee77bcc091ba31fdd3e59f8d45d0b646a44a0.tar.gz
freeipa-775ee77bcc091ba31fdd3e59f8d45d0b646a44a0.tar.xz
freeipa-775ee77bcc091ba31fdd3e59f8d45d0b646a44a0.zip
CI: Make double circle topology python3 compatible
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipatests/test_integration/test_topologies.py')
-rw-r--r--ipatests/test_integration/test_topologies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/test_topologies.py b/ipatests/test_integration/test_topologies.py
index a0a1b9d62..4618b44fe 100644
--- a/ipatests/test_integration/test_topologies.py
+++ b/ipatests/test_integration/test_topologies.py
@@ -121,7 +121,7 @@ def test_topology_two_connected():
def test_topology_double_circle_topo():
topo = tasks.get_topo('double-circle')
assert topo == tasks.double_circle_topo
- assert list(topo('M', range(1, 30))) == [
+ assert list(topo('M', list(range(1, 30)))) == [
('M', 1),
(1, 6),
(1, 12),