1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix files left open after reading

This commit is contained in:
Juhani Numminen 2021-07-07 16:59:56 +03:00
parent 2cb63cb3fc
commit 515f77f0fa

View file

@ -43,8 +43,8 @@ class ImportFileTests(unittest.TestCase):
"""docstring for _calc_hint"""
s_game = Mock_S_Game()
h = FreeCellSolver_Hint(s_game, None)
fh = open(fn, 'r+b')
h.importFileHelper(fh, s_game)
with open(fn, 'r+b') as fh:
h.importFileHelper(fh, s_game)
return h
def _successful_import(self, fn, want_s, blurb):