From 14e34119e3672ac627468354c3a890c13f9282fd Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Tue, 13 Jan 2015 00:48:17 +0800 Subject: [PATCH] fix wrong file path in docstring of hacking.checks The module docstring says the test code is in nova/tests/test_hacking.py, but that path is wrong, the correct value is nova/tests/unit/test_hacking.py Change-Id: I89212267bb69ffa55a504c6b89cdeff0c55eb27d --- nova/hacking/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/hacking/checks.py b/nova/hacking/checks.py index 1b9e9e38b6f5..254790aa9dd4 100644 --- a/nova/hacking/checks.py +++ b/nova/hacking/checks.py @@ -28,7 +28,7 @@ Guidelines for writing new hacking checks - Keep the test method code in the source file ordered based on the N3xx value. - List the new rule in the top level HACKING.rst file - - Add test cases for each new rule to nova/tests/test_hacking.py + - Add test cases for each new rule to nova/tests/unit/test_hacking.py """