Typos in the LoadAuthPlugins note

Trivial fix of typos in the NOTE added for LoadAuthPlugins.__init__

Change-Id: I13edc3b5aa8f772d43ebfd07afc455bf3b2229ee
This commit is contained in:
Eric Brown 2017-02-27 13:46:56 -08:00
parent 6fde9ef943
commit d54eef8873
1 changed files with 3 additions and 3 deletions

View File

@ -40,9 +40,9 @@ class LoadAuthPlugins(fixtures.Fixture):
def __init__(self, *method_names):
super(LoadAuthPlugins, self).__init__()
self.method_names = method_names
# NOTE(dstanek): This fixutre will load the requested auth
# methods as part of its setup. We need to save any exising
# plugins so that we care restore the in the cleanup.
# NOTE(dstanek): This fixture will load the requested auth
# methods as part of its setup. We need to save any existing
# plugins so that we can restore them in the cleanup.
self.saved = {}
def setUp(self):