Skip to content

Commit

Permalink
Merge pull request #1913 from General-Sax/patch-2
Browse files Browse the repository at this point in the history
Fix broken test: test_api.test_save()
  • Loading branch information
jakevdp authored Jan 13, 2020
2 parents bb16d5c + 1e53a43 commit cce8a4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions altair/vegalite/v4/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ def test_save(format, basic_chart):
else:
out = io.BytesIO()
mode = 'rb'

fid, filename = tempfile.mkstemp(suffix='.' + format)
os.close(fid)

try:
try:
Expand Down

0 comments on commit cce8a4c

Please sign in to comment.