From 06c98c950ac4e0b4452b2f062391362e31d06c8d Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 11 Feb 2015 14:02:55 +0100 Subject: [PATCH] Moved hacking unit test into proper location blueprint reorganize-unit-test-tree Change-Id: I6a3bd8aebad75a5addb543676afecaef43ca30a4 --- neutron/hacking/checks.py | 2 +- neutron/tests/unit/hacking/__init__.py | 0 neutron/tests/unit/{test_hacking.py => hacking/test_checks.py} | 0 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 neutron/tests/unit/hacking/__init__.py rename neutron/tests/unit/{test_hacking.py => hacking/test_checks.py} (100%) diff --git a/neutron/hacking/checks.py b/neutron/hacking/checks.py index d2a928d6c..ffce620e2 100644 --- a/neutron/hacking/checks.py +++ b/neutron/hacking/checks.py @@ -26,7 +26,7 @@ import pep8 # on the N3xx value. # - List the new rule in the top level HACKING.rst file # - Add test cases for each new rule to -# neutron/tests/unit/test_hacking.py +# neutron/tests/unit/hacking/test_checks.py _all_log_levels = { # NOTE(yamamoto): Following nova which uses _() for audit. diff --git a/neutron/tests/unit/hacking/__init__.py b/neutron/tests/unit/hacking/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/neutron/tests/unit/test_hacking.py b/neutron/tests/unit/hacking/test_checks.py similarity index 100% rename from neutron/tests/unit/test_hacking.py rename to neutron/tests/unit/hacking/test_checks.py -- 2.45.2