From 3276c6455e09660cb2d27c47ea2800f4d98ec760 Mon Sep 17 00:00:00 2001 From: Vijay Avuthu Date: Thu, 2 Aug 2018 12:56:16 +0530 Subject: Fixing the default quorum type issue In 3.4, default quorum type is chnaged to auto. pre 3.4 releases, it was None Change-Id: I4e58ff8cc4727db81bb6b9baadd101687ddb74b0 Signed-off-by: Vijay Avuthu --- tests/functional/afr/test_client_side_quorum.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional/afr/test_client_side_quorum.py b/tests/functional/afr/test_client_side_quorum.py index a3b74a1ea..8c6e3c8a5 100644 --- a/tests/functional/afr/test_client_side_quorum.py +++ b/tests/functional/afr/test_client_side_quorum.py @@ -372,10 +372,10 @@ class ClientSideQuorumTests(GlusterBaseClass): self.assertIsNotNone(option_dict, ("Failed to get %s volume option" " for volume %s" % (option, self.volname))) - self.assertEqual(option_dict['cluster.quorum-type'], 'none', - ("Default value for %s is not NONE" + self.assertEqual(option_dict['cluster.quorum-type'], 'auto', + ("Default value for %s is not auto" " for volume %s" % (option, self.volname))) - g.log.info("Succesfull in getting %s for the volume %s", + g.log.info("Succesfully verified default value of %s for volume %s", option, self.volname) # set the junk value to cluster.quorum-type -- cgit