Fix formatting errors in TESTING.rst

There were a few errors that went undetected.

TESTING.rst:266: SEVERE: Title level inconsistent:
TESTING.rst:67: ERROR: Unknown target name: "test".
TESTING.rst:74: ERROR: Unknown target name: "test".

Change-Id: Iad225e95c23b7460d228ba5447f4a361aa68d5dc
This commit is contained in:
armando-migliaccio 2015-04-14 14:41:45 -07:00 committed by Henry Gessau
parent 53f53b1a37
commit cc904070cc
1 changed files with 3 additions and 3 deletions

View File

@ -66,12 +66,12 @@ code tree, e.g. ::
Unit test modules should have the same path under neutron/tests/unit/
as the module they target has under neutron/, and their name should be
the name of the target module prefixed by 'test_'. This requirement
the name of the target module prefixed by `test_`. This requirement
is intended to make it easier for developers to find the unit tests
for a given module.
Similarly, when a test module targets a package, that module's name
should be the name of the package prefixed by 'test_' with the same
should be the name of the package prefixed by `test_` with the same
path as when a test targets a module, e.g. ::
- target package: neutron.ipam
@ -264,7 +264,7 @@ TEMPEST_CONFIG_DIR before invoking tox: ::
Running individual tests
~~~~~~~~~~~~~~~~~~~~~~~~
------------------------
For running individual test modules or cases, you just need to pass
the dot-separated path to the module you want as an argument to it.