diff options
author | Peter Portante <peter.portante@redhat.com> | 2013-05-29 23:10:40 -0400 |
---|---|---|
committer | Peter Portante <pportant@redhat.com> | 2013-05-29 20:11:53 -0700 |
commit | dc870d2620a2f10c6b00589d4d06fe2feb7c329b (patch) | |
tree | 475906eda8bf1aea9491b0e5c189d3c15bcff809 /test/unit | |
parent | 07e4329949318a1eafd9ce3d98c6456d0d0c6361 (diff) |
Remove duplicate class names.
Change-Id: I7ef76b66beee1392d4e11544cc74de12a81e742a
Signed-off-by: Peter Portante <peter.portante@redhat.com>
Reviewed-on: http://review.gluster.org/5115
Reviewed-by: Peter Portante <pportant@redhat.com>
Tested-by: Peter Portante <pportant@redhat.com>
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/common/test_constraints.py | 2 | ||||
-rw-r--r-- | test/unit/common/test_fs_utils.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/common/test_constraints.py b/test/unit/common/test_constraints.py index a6d21d8..e2769ab 100644 --- a/test/unit/common/test_constraints.py +++ b/test/unit/common/test_constraints.py @@ -40,7 +40,7 @@ def mock_check_mount_err(*args, **kwargs): return False -class TestUtils(unittest.TestCase): +class TestConstraints(unittest.TestCase): """ Tests for common.constraints """ def tearDown(self): diff --git a/test/unit/common/test_fs_utils.py b/test/unit/common/test_fs_utils.py index 28354ee..eb6faa0 100644 --- a/test/unit/common/test_fs_utils.py +++ b/test/unit/common/test_fs_utils.py @@ -32,8 +32,8 @@ def mock_os_fsync(fd): def mock_tpool_execute(func, *args, **kwargs): func(*args, **kwargs) -class TestUtils(unittest.TestCase): - """ Tests for common.utils """ +class TestFsUtils(unittest.TestCase): + """ Tests for common.fs_utils """ def test_do_walk(self): # create directory structure |