-- Oleg Fayans Quality Engineer FreeIPA team RedHat.
From 3befa8b390e4c5c02c81ad2efee19acc237c9222 Mon Sep 17 00:00:00 2001 From: Oleg Fayans <ofay...@redhat.com> Date: Wed, 10 Aug 2016 20:30:31 +0200 Subject: [PATCH] Fixed expected segment name
Lately replica installation results in creation of a topology segment with replica being left node, not right node as it used to be. This broke tests that expected replica to be right node https://fedorahosted.org/freeipa/ticket/6201 --- ipatests/test_integration/test_topology.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipatests/test_integration/test_topology.py b/ipatests/test_integration/test_topology.py index e956563c27eafd84deed5786274a73d0d3594642..8853af71b5834934573bef25f2720de746306e4b 100644 --- a/ipatests/test_integration/test_topology.py +++ b/ipatests/test_integration/test_topology.py @@ -117,8 +117,8 @@ class TestTopologyOptions(IntegrationTest): "%s: segment not found" % segment['name']) # Remove master <-> replica2 segment and make sure that the changes get # there through replica1 - deleteme = "%s-to-%s" % (self.master.hostname, - self.replicas[1].hostname) + deleteme = "%s-to-%s" % (self.replicas[1].hostname, + self.master.hostname) returncode, error = tasks.destroy_segment(self.master, deleteme) assert returncode == 0, error # Wait till replication ends and make sure replica1 does not have -- 1.8.3.1
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code