From: Artem Bityutskiy Date: Tue, 28 Jan 2014 15:54:59 +0000 (+0200) Subject: tests: rename a couple of test classes X-Git-Tag: v3.2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a1b4ad7704c2a1382d36acce14cd47f829f3e6d;p=tools%2Fbmap-tools.git 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 --- 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.