diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-29 20:07:05 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-29 20:07:05 -0400 |
commit | 0fc263c4fa78e5eeeea9a511fcfa663691b6f665 (patch) | |
tree | ba637551c8bae6c60f12f69ba63f1cd79a0a50d3 /tests/plugin1.py | |
parent | 19f81fe15a7ea9c6c05128dd2f6b827c048f805c (diff) | |
download | python-coveragepy-0fc263c4fa78e5eeeea9a511fcfa663691b6f665.tar.gz |
Clean up in plugin tests
Diffstat (limited to 'tests/plugin1.py')
-rw-r--r-- | tests/plugin1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugin1.py b/tests/plugin1.py index af4dfc5..63ebacf 100644 --- a/tests/plugin1.py +++ b/tests/plugin1.py @@ -24,7 +24,7 @@ class FileTracer(coverage.FileTracer): """A FileTracer emulating a simple static plugin.""" def __init__(self, filename): - """Claim that xyz.py was actually sourced from ABC.zz""" + """Claim that */*xyz.py was actually sourced from /src/*ABC.zz""" self._filename = filename self._source_filename = os.path.join( "/src", |