We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 277a087 commit b497636Copy full SHA for b497636
pygmt/tests/test_helpers.py
@@ -54,7 +54,7 @@ def my_module(**kwargs):
54
def test_gmttempfile():
55
"Check that file is really created and deleted."
56
with GMTTempFile() as tmpfile:
57
- assert os.path.exists(tmpfile.name)
+ assert not os.path.exists(tmpfile.name)
58
# File should be deleted when leaving the with block
59
assert not os.path.exists(tmpfile.name)
60
0 commit comments