From ec407b4d61b15506e6ae5b3f28d3983af4f28457 Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Wed, 18 Feb 2015 15:47:43 -0500 Subject: fix functional tests tests were failing due to an issue with loremipsum package Change-Id: I9c364f48dc7fb642f5cd7a6371a53a0aa137618b Signed-off-by: Thiago da Silva --- test/functional/libgfapi-python-tests.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'test/functional/libgfapi-python-tests.py') diff --git a/test/functional/libgfapi-python-tests.py b/test/functional/libgfapi-python-tests.py index 5af7d70..8bcbf45 100644 --- a/test/functional/libgfapi-python-tests.py +++ b/test/functional/libgfapi-python-tests.py @@ -16,7 +16,6 @@ import unittest import os import types -import loremipsum import errno from glusterfs import gfapi @@ -100,7 +99,7 @@ class FileOpsTest(unittest.TestCase): cls.vol = None def setUp(self): - self.data = loremipsum.get_sentence() + self.data = "gluster is awesome" self.path = self._testMethodName + ".io" with self.vol.open(self.path, os.O_CREAT | os.O_WRONLY | os.O_EXCL, 0644) as fd: @@ -266,7 +265,7 @@ class DirOpsTest(unittest.TestCase): cls.testfile = None def setUp(self): - self.data = loremipsum.get_sentence() + self.data = "gluster is awesome" self.dir_path = self._testMethodName + "_dir" self.vol.mkdir(self.dir_path, 0755) for x in range(0, 3): -- cgit