diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-04-26 12:52:42 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-04-26 12:52:42 -0400 |
commit | 59208c20ee0d312bc0da16e8d143ed8b70ec5079 (patch) | |
tree | 550e1f5c7d201fa33cc746b2e467d50fb9867156 /tests/test_plugins.py | |
parent | c0dd3e9a1ffddd4799725b895e7d2033628698e9 (diff) | |
download | python-coveragepy-git-59208c20ee0d312bc0da16e8d143ed8b70ec5079.tar.gz |
Use pipe symbol to join static and dynamic contexts
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index f5a17619..264e7aea 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -1023,9 +1023,9 @@ class DynamicContextPluginTest(CoverageTest): data = cov.get_data() expected = [ 'mytests', - 'mytests:doctest:HTML_TAG', - 'mytests:test:HTML_TAG', - 'mytests:test:RENDERERS', + 'mytests|doctest:HTML_TAG', + 'mytests|test:HTML_TAG', + 'mytests|test:RENDERERS', ] self.assertEqual(expected, sorted(data.measured_contexts())) |