Skip to content

Commit

Permalink
cleaned up debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Jan 21, 2025
1 parent bd2a54b commit dd3fe0a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/hl/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,14 +260,13 @@ def get_group_ref(filename):
with h5py.File(tmp_filename, 'w') as f:
g1 = f.create_group("g1")
self.assertTrue(isinstance(g1, h5py.Group))
self.assertTrue(g1)

return g1

filename = self.getFileName("test_closed_group")
print("filename:", filename)

grp = get_group_ref(filename)
print(grp)
self.assertFalse(grp)

def test_external_links(self):
Expand Down

0 comments on commit dd3fe0a

Please sign in to comment.