Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Jun 18, 2023
1 parent fd34e70 commit ac48e92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ def test_attrs():
assert c.staticmethods
assert c.methods

v = m.members["EnumDemo"]
e = m.members["EnumDemo"]
assert isinstance(e, Class)
v = e.members["RED"]
assert isinstance(v, Variable)
assert v.is_enum_member

Expand Down

0 comments on commit ac48e92

Please sign in to comment.