From 69d56fc29a1964fb76af28fd5dc9aee9296075b7 Mon Sep 17 00:00:00 2001 From: Rishabh Jain Date: Wed, 3 Sep 2014 11:20:38 -0700 Subject: [PATCH] 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 Co-Authored-By: Kamil Rykowski --- openstack_dashboard/dashboards/project/images/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openstack_dashboard/dashboards/project/images/tests.py b/openstack_dashboard/dashboards/project/images/tests.py index f3ef1f5195..29b97c8f5f 100644 --- a/openstack_dashboard/dashboards/project/images/tests.py +++ b/openstack_dashboard/dashboards/project/images/tests.py @@ -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")