diff options
author | Nigel Babu <nigelb@redhat.com> | 2018-07-27 13:02:05 +0530 |
---|---|---|
committer | Nigel Babu <nigelb@redhat.com> | 2018-08-07 19:48:57 +0530 |
commit | 82c94a926c1f1961932798257d18a2fc306f9393 (patch) | |
tree | a5d5aa43613182aa4d545bc4c0d10c123cf16fa2 /tests/functional/glusterd/test_probe_hostname.py | |
parent | e0bb79503c37843d02082b93425230f2afbbbde2 (diff) |
Fix spelling mistake across the codebase
Change-Id: I46fc2feffe6443af6913785d67bf310838532421
Diffstat (limited to 'tests/functional/glusterd/test_probe_hostname.py')
-rw-r--r-- | tests/functional/glusterd/test_probe_hostname.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/glusterd/test_probe_hostname.py b/tests/functional/glusterd/test_probe_hostname.py index 55476edc0..6e7d87b53 100644 --- a/tests/functional/glusterd/test_probe_hostname.py +++ b/tests/functional/glusterd/test_probe_hostname.py @@ -103,14 +103,14 @@ class TestPeerProbe(GlusterBaseClass): self.brick_list, force=False) self.assertEqual(ret, 0, "Unable" "to create volume % s" % self.volname) - g.log.info("Volume created successfuly % s", self.volname) + g.log.info("Volume created successfully % s", self.volname) # Start a volume g.log.info("Start a volume") ret, _, _ = volume_start(self.mnode, self.volname) self.assertEqual(ret, 0, "Unable" "to start volume % s" % self.volname) - g.log.info("Volume started successfuly % s", self.volname) + g.log.info("Volume started successfully % s", self.volname) # Get volume info g.log.info("get volume info") @@ -127,7 +127,7 @@ class TestPeerProbe(GlusterBaseClass): ret, _, _ = volume_stop(self.mnode, self.volname) self.assertEqual(ret, 0, "Unable" "to stop volume % s" % self.volname) - g.log.info("Volume stopped successfuly % s", self.volname) + g.log.info("Volume stopped successfully % s", self.volname) # Create a volume self.volname = "test-vol-fqdn" @@ -154,14 +154,14 @@ class TestPeerProbe(GlusterBaseClass): my_brick_list, force=False) self.assertEqual(ret, 0, "Unable" "to create volume % s" % self.volname) - g.log.info("Volume created successfuly % s", self.volname) + g.log.info("Volume created successfully % s", self.volname) # Start a volume g.log.info("Start a volume") ret, _, _ = volume_start(self.mnode, self.volname) self.assertEqual(ret, 0, "Unable" "to start volume % s" % self.volname) - g.log.info("Volume started successfuly % s", self.volname) + g.log.info("Volume started successfully % s", self.volname) # Get volume info g.log.info("get volume info") @@ -178,4 +178,4 @@ class TestPeerProbe(GlusterBaseClass): ret, _, _ = volume_stop(self.mnode, self.volname) self.assertEqual(ret, 0, "Unable" "to stop volume % s" % self.volname) - g.log.info("Volume stopped successfuly % s", self.volname) + g.log.info("Volume stopped successfully % s", self.volname) |