Skip to content

Commit 84a132a

Browse files
committed
Update comments
1 parent 55f3b25 commit 84a132a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

seleniumbase/fixtures/errors.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
"""
2-
This module contains test-state related exceptions.
2+
SeleniumBase MySQL plugin-related exceptions.
33
Raising one of these in a test will cause the
4-
test-state to be logged appropriately in the database
4+
test-state to be logged appropriately in the DB
55
for tests that use the SeleniumBase MySQL plugin.
66
"""
77

88

99
class BlockedTest(Exception):
10-
"""Raise this to mark a test as Blocked"""
10+
""" Raise this to mark a test as Blocked in the DB. """
1111
pass
1212

1313

1414
class SkipTest(Exception):
15-
"""Raise this to mark a test as Skipped."""
15+
""" Raise this to mark a test as Skipped in the DB. """
1616
pass
1717

1818

1919
class DeprecatedTest(Exception):
20-
"""Raise this to mark a test as Deprecated."""
20+
""" Raise this to mark a test as Deprecated in the DB. """
2121
pass

0 commit comments

Comments
 (0)