diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-10 07:52:17 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-10 16:15:22 -0500 |
commit | a85ac5a10b297b20a37364ed07981cc1f5da1638 (patch) | |
tree | eb27bf1ab22f81609072878ba9b1452e77056c2a /tests/test_concurrency.py | |
parent | a00739142d023c0081df20157f0bf4615420e99c (diff) | |
download | python-coveragepy-git-a85ac5a10b297b20a37364ed07981cc1f5da1638.tar.gz |
style(test): use a consistent name format for test_bug_XXX tests
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 69157968..2e784cc4 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -558,7 +558,7 @@ class MultiprocessingTest(CoverageTest): assert "Exception during multiprocessing bootstrap init" in out assert "Exception: Crashing because called by _bootstrap" in out - def test_bug890(self): + def test_bug_890(self): # chdir in multiprocessing shouldn't keep us from finding the # .coveragerc file. self.make_file("multi.py", """\ |