plugin.rst: Fix a typo in an example code fragment

Change-Id: Ib003702533397a2f0f3efc68f75662cad2208301
This commit is contained in:
YAMAMOTO Takashi 2015-10-19 15:54:42 +09:00
parent be9f98309f
commit cb2ac6eeb8
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ to get information when it needs. To simplify creating this tempest provides an
abstract class that should be used as the parent for your plugin. To use this
you would do something like the following::
from tempest.test_discover import plugin
from tempest.test_discover import plugins
class MyPlugin(plugin.TempestPlugin):
class MyPlugin(plugins.TempestPlugin):
Then you need to ensure you locally define all of the methods in the abstract
class, you can refer to the api doc below for a reference of what that entails.