Fix typo in microversion sequence test

The assertion failure message in a microversion sequence test
had a typo. This was not noticed because the test usually
passes and the message is not produced under normal circumstances.

Change-Id: I76cca613e0d89e235f7fc23740dda93bda4ffd15
This commit is contained in:
Chris Dent 2019-08-30 17:32:55 +01:00
parent 8272dfee98
commit 156b083357

View File

@ -153,6 +153,6 @@ class MicroversionSequentialTest(testtools.TestCase):
previous_min_version.minor - 1))
self.assertEqual(
previous_min_version, method[1],
"The microversions aren't sequential in the mehtod %s" %
"The microversions aren't sequential in the method %s" %
method_name)
previous_min_version = method[0]