diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-30 10:46:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-03-30 10:46:09 -0400 |
commit | f032ce4ed32a913406aa449417dabc6758c3b85d (patch) | |
tree | 7880bc6d143408173e0c84e00a24c440af6268cf | |
parent | c34e699dee37163f181e17da63ce6d07cca71ba0 (diff) | |
download | python-coveragepy-f032ce4ed32a913406aa449417dabc6758c3b85d.tar.gz |
Windows has a different error message for path(float)
-rw-r--r-- | tests/test_plugins.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 607a21a..e6c1f17 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -707,6 +707,7 @@ class BadPluginTest(FileTracerTest): excmsgs=[ "expected str, bytes or os.PathLike object, not float", "'float' object has no attribute", + "object of type 'float' has no len()", ], ) |