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:
parent
2cb63cb3fc
commit
515f77f0fa
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue