Update testing doc to reflect unit subdir move
Change-Id: I38babbafee2ba4d3e92481424041e5ff3bd9385c
diff --git a/TESTING.rst b/TESTING.rst
index 56f2fbb..069dffd 100644
--- a/TESTING.rst
+++ b/TESTING.rst
@@ -54,12 +54,12 @@
For example, to *run the basic Zuul test*::
- tox -e py27 -- tests.test_scheduler.TestScheduler.test_jobs_launched
+ tox -e py27 -- tests.unit.test_scheduler.TestScheduler.test_jobs_launched
To *run one test in the foreground* (after previously having run tox
to set up the virtualenv)::
- .tox/py27/bin/python -m testtools.run tests.test_scheduler.TestScheduler.test_jobs_launched
+ .tox/py27/bin/python -m testtools.run tests.unit.test_scheduler.TestScheduler.test_jobs_launched
List Failing Tests
------------------