From 8d4e09d63079a1c10d6b42b4cbc600c04e0cedd4 Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Fri, 5 Sep 2014 12:39:03 +0300 Subject: [PATCH] Fix help for running specified unit tests Change-Id: I385fcf88ae6a2e839c99ef13cd4f410ce3c0ee5f --- doc/source/devref/unit_tests.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/devref/unit_tests.rst b/doc/source/devref/unit_tests.rst index 8f41c6559..62c28d6b4 100644 --- a/doc/source/devref/unit_tests.rst +++ b/doc/source/devref/unit_tests.rst @@ -66,12 +66,12 @@ To run the tests in the ``cinder/tests/test_libvirt.py`` file:: To run the tests in the `HostStateTestCase` class in ``cinder/tests/test_libvirt.py``:: - ./run_tests.sh test_libvirt:HostStateTestCase + ./run_tests.sh test_libvirt.HostStateTestCase To run the `ToPrimitiveTestCase.test_dict` test method in ``cinder/tests/test_utils.py``:: - ./run_tests.sh test_utils:ToPrimitiveTestCase.test_dict + ./run_tests.sh test_utils.ToPrimitiveTestCase.test_dict Suppressing logging output when tests fail -- 2.45.2