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 61f09de commit a7b0850Copy full SHA for a7b0850
zarr/tests/test_hierarchy.py
@@ -493,7 +493,7 @@ def test_getattr(self):
493
eq(g1['foo'], g1.foo)
494
eq(g2['bar'], g2.bar)
495
# test that hasattr returns False instead of an exception (issue #88)
496
- eq(hasattr(g1, '__unexistingattribute__'), False)
+ assert_false(hasattr(g1, 'unexistingattribute'))
497
498
def test_group_repr(self):
499
g = self.create_group()
0 commit comments