Fix "it's vs. its" typos

Change-Id: Ib7914a7c0b6636599526d05bfb8bc2bcf3a79744
Closes-Bug: #1252838
This commit is contained in:
Ana Krivokapic 2013-11-19 20:38:21 +01:00
parent 0c5ae34a10
commit c1d565a38b
1 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ class TestCase(horizon_helpers.TestCase):
def assertNoFormErrors(self, response, context_name="form"): def assertNoFormErrors(self, response, context_name="form"):
""" """
Asserts that the response either does not contain a form in it's Asserts that the response either does not contain a form in its
context, or that if it does, that form has no errors. context, or that if it does, that form has no errors.
""" """
context = getattr(response, "context", {}) context = getattr(response, "context", {})
@ -205,7 +205,7 @@ class TestCase(horizon_helpers.TestCase):
def assertFormErrors(self, response, count=0, message=None, def assertFormErrors(self, response, count=0, message=None,
context_name="form"): context_name="form"):
""" """
Asserts that the response does contain a form in it's Asserts that the response does contain a form in its
context, and that form has errors, if count were given, context, and that form has errors, if count were given,
it must match the exact numbers of errors it must match the exact numbers of errors
""" """