Spelling fixes in images tests
Fix typo in images tests where extention is used instead of extension. Closes-Bug: 1365099 Change-Id: Ib87cc034f02661aca4cad9e45f32b79263768d7c Co-Authored-By: Rishabh Jain <rishabja@cisco.com> Co-Authored-By: Kamil Rykowski <kamil.rykowski@intel.com>
This commit is contained in:
parent
3a492dd1ea
commit
69d56fc29a
@ -333,7 +333,7 @@ class SeleniumTests(test.SeleniumTestCase):
|
||||
formats = self.ui.Select(driver.find_element_by_id("id_disk_format"))
|
||||
body = formats.first_selected_option
|
||||
self.assertTrue("ISO" in body.text,
|
||||
"ISO should be selected when the extention is *.iso")
|
||||
"ISO should be selected when the extension is *.iso")
|
||||
|
||||
@test.create_stubs({api.glance: ('image_list_detailed',)})
|
||||
def test_modal_create_image_from_file(self):
|
||||
@ -358,7 +358,7 @@ class SeleniumTests(test.SeleniumTestCase):
|
||||
formats = self.ui.Select(driver.find_element_by_id("id_disk_format"))
|
||||
body = formats.first_selected_option
|
||||
self.assertTrue("ISO" in body.text,
|
||||
"ISO should be selected when the extention is *.iso")
|
||||
"ISO should be selected when the extension is *.iso")
|
||||
|
||||
def test_create_image_from_url(self):
|
||||
driver = self.selenium
|
||||
@ -374,7 +374,7 @@ class SeleniumTests(test.SeleniumTestCase):
|
||||
formats = self.ui.Select(driver.find_element_by_id("id_disk_format"))
|
||||
body = formats.first_selected_option
|
||||
self.assertTrue("ISO" in body.text,
|
||||
"ISO should be selected when the extention is *.iso")
|
||||
"ISO should be selected when the extension is *.iso")
|
||||
|
||||
def test_create_image_from_file(self):
|
||||
driver = self.selenium
|
||||
@ -389,4 +389,4 @@ class SeleniumTests(test.SeleniumTestCase):
|
||||
formats = self.ui.Select(driver.find_element_by_id("id_disk_format"))
|
||||
body = formats.first_selected_option
|
||||
self.assertTrue("ISO" in body.text,
|
||||
"ISO should be selected when the extention is *.iso")
|
||||
"ISO should be selected when the extension is *.iso")
|
||||
|
Loading…
Reference in New Issue
Block a user