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 | b81ed16b9af2743a21ebea6344c43f72ec16c61e (patch) | |
tree | f5526fafe078811fdab91efec81936a40f0a9bcf /tests/test_plugins.py | |
parent | 650deb6a0e31af8da1c461bdca4f5b03e68b70d4 (diff) | |
download | python-coveragepy-git-b81ed16b9af2743a21ebea6344c43f72ec16c61e.tar.gz |
Windows has a different error message for path(float)
Diffstat (limited to 'tests/test_plugins.py')
-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 607a21a4..e6c1f17d 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()", ], ) |