Skip to content

Commit 08c3c53

Browse files
committed
Update the description of a command-line arg
1 parent 44fd17f commit 08c3c53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

seleniumbase/plugins/base_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def options(self, parser, env):
5353
),
5454
default=constants.Environment.TEST,
5555
help="""This option sets a test env from a list of choices.
56-
In tests, use "self.environment" to get the env.""",
56+
Access using "self.env" or "self.environment".""",
5757
)
5858
parser.add_option(
5959
"--account",

seleniumbase/plugins/pytest_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def pytest_addoption(parser):
181181
),
182182
default=constants.Environment.TEST,
183183
help="""This option sets a test env from a list of choices.
184-
In tests, use "self.environment" to get the env.""",
184+
Access using "self.env" or "self.environment".""",
185185
)
186186
parser.addoption(
187187
"--account",

0 commit comments

Comments
 (0)