From 2a1b4ad7704c2a1382d36acce14cd47f829f3e6d Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Tue, 28 Jan 2014 17:54:59 +0200 Subject: [PATCH] tests: rename a couple of test classes This is a cosmetic change. Most of the tests were started by copying the 'test_api_base', and the main class was not re-named from 'TestCreateCopy' to something else. Let's do this now. Change-Id: Iba87c5094cbb8d217682e5c89df1f2441d2b70bc Signed-off-by: Artem Bityutskiy --- tests/test_compat.py | 2 +- tests/test_filemap.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_compat.py b/tests/test_compat.py index 3ceb225..a1d0051 100644 --- a/tests/test_compat.py +++ b/tests/test_compat.py @@ -45,7 +45,7 @@ try: except ImportError: import unittest -class TestCreateCopy(unittest.TestCase): +class TestCompat(unittest.TestCase): """The test class for this unit test.""" def test(self): diff --git a/tests/test_filemap.py b/tests/test_filemap.py index 48fc70a..581eb23 100644 --- a/tests/test_filemap.py +++ b/tests/test_filemap.py @@ -124,7 +124,7 @@ def _do_test(f_image, filemap, mapped, unmapped): _check_ranges(f_image, filemap, first_block, blocks_cnt, unmapped, "unmapped") -class TestCreateCopy(unittest.TestCase): +class TestFilemap(unittest.TestCase): """ The test class for this unit tests. Basically executes the '_do_test()' function for different sparse files. -- 2.34.1