diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-19 18:05:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-19 18:05:44 -0400 |
commit | b4b9c0b458325c98a3b3a3fcb6b3daa5bb63f4ec (patch) | |
tree | 733520a8f5497eecfdeb9a7bcf2a1564cc5e4a24 /tests/test_cmdline.py | |
parent | 5fff9a625e91600346cfbaa0022060dfbc9e9fb3 (diff) | |
download | python-coveragepy-git-b4b9c0b458325c98a3b3a3fcb6b3daa5bb63f4ec.tar.gz |
Clarify an error message
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index a4d01880..59c76c73 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -470,7 +470,7 @@ class CmdLineTest(BaseCmdLineTest): # config file. self.command_line("run --concurrency=multiprocessing --branch foo.py", ret=ERR) self.assertIn( - "Options affecting multiprocessing must be specified in a configuration file.", + "Options affecting multiprocessing must only be specified in a configuration file.", self.stderr() ) |