summaryrefslogtreecommitdiff
path: root/django/contrib/admin/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/admin/tests.py')
-rw-r--r--django/contrib/admin/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/contrib/admin/tests.py b/django/contrib/admin/tests.py
index 56b8b66023..cd18868ddc 100644
--- a/django/contrib/admin/tests.py
+++ b/django/contrib/admin/tests.py
@@ -54,7 +54,7 @@ class AdminSeleniumWebDriverTestCase(StaticLiveServerCase):
def wait_for(self, css_selector, timeout=10):
"""
- Helper function that blocks until an css selector is found on the page.
+ Helper function that blocks until a CSS selector is found on the page.
"""
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as ec
@@ -65,7 +65,7 @@ class AdminSeleniumWebDriverTestCase(StaticLiveServerCase):
def wait_for_text(self, css_selector, text, timeout=10):
"""
- Helper function that blocks until the text is found in the css selector.
+ Helper function that blocks until the text is found in the CSS selector.
"""
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as ec
@@ -77,7 +77,7 @@ class AdminSeleniumWebDriverTestCase(StaticLiveServerCase):
def wait_for_value(self, css_selector, text, timeout=10):
"""
- Helper function that blocks until the value is found in the css selector.
+ Helper function that blocks until the value is found in the CSS selector.
"""
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as ec
@@ -96,7 +96,7 @@ class AdminSeleniumWebDriverTestCase(StaticLiveServerCase):
# Wait for the next page to be loaded
self.wait_loaded_tag('body')
except TimeoutException:
- # IE7 occasionnally returns an error "Internet Explorer cannot
+ # IE7 occasionally returns an error "Internet Explorer cannot
# display the webpage" and doesn't load the next page. We just
# ignore it.
pass