Commit 03979e43 authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Vincent Pelletier

tests: Do not rely on NoCloseFileProxy.close being called for coverage.

It is not in python3.
parent d8173a24
......@@ -110,7 +110,7 @@ class NoCloseFileProxy(object):
def __getattr__(self, name):
return getattr(self._real_file, name)
def close(self):
def close(self): # pragma: no cover
"""
Don't.
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment