diff options
author | David Kupka <dkupka@redhat.com> | 2016-02-24 08:15:51 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-02-24 10:37:04 +0100 |
commit | 775ee77bcc091ba31fdd3e59f8d45d0b646a44a0 (patch) | |
tree | 15edb29cbf5c7e8a4c3bcdb3ffa4e25d9474e3fb /ipatests/test_integration/test_topologies.py | |
parent | ef9134640795b736731bfbdb6fe0badb3e817552 (diff) | |
download | freeipa-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.py | 2 |
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), |