summaryrefslogtreecommitdiff
path: root/django/test/selenium.py
diff options
context:
space:
mode:
authorAnton Samarchyan <anton.samarchyan@savoirfairelinux.com>2017-01-24 15:37:33 -0500
committerTim Graham <timograham@gmail.com>2017-03-04 10:02:06 -0500
commit86de930f413e0ad902e11d78ac988e6743202ea6 (patch)
tree790dcc4c38125b619ffee76b5531155d0d8232f4 /django/test/selenium.py
parent6ae1b04fb584db0fdb22b8e287784c4ed3ac62ac (diff)
Refs #27656 -- Updated remaining docstring verbs according to PEP 257.
Diffstat (limited to 'django/test/selenium.py')
-rw-r--r--django/test/selenium.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/selenium.py b/django/test/selenium.py
index 2b14678b23..9bf1e1038d 100644
--- a/django/test/selenium.py
+++ b/django/test/selenium.py
@@ -73,7 +73,7 @@ class SeleniumTestCase(LiveServerTestCase, metaclass=SeleniumTestCaseBase):
@contextmanager
def disable_implicit_wait(self):
- """Context manager that disables the default implicit wait."""
+ """Disable the default implicit wait."""
self.selenium.implicitly_wait(0)
try:
yield