From d54eef8873c7e064f3e6312c5efc77f110b0281f Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Mon, 27 Feb 2017 13:46:56 -0800 Subject: [PATCH] Typos in the LoadAuthPlugins note Trivial fix of typos in the NOTE added for LoadAuthPlugins.__init__ Change-Id: I13edc3b5aa8f772d43ebfd07afc455bf3b2229ee --- keystone/tests/unit/ksfixtures/auth_plugins.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/keystone/tests/unit/ksfixtures/auth_plugins.py b/keystone/tests/unit/ksfixtures/auth_plugins.py index 1e0ad77b75..462046d976 100644 --- a/keystone/tests/unit/ksfixtures/auth_plugins.py +++ b/keystone/tests/unit/ksfixtures/auth_plugins.py @@ -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):