Skip to content

Commit

Permalink
Change key and item types back to original in BadItemCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
enourbakhsh committed Dec 11, 2024
1 parent bdc8aa5 commit 7b5464c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dictField.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class BadKeyCheck(pexConfig.Config):
try:

class BadItemCheck(pexConfig.Config):
d = pexConfig.DictField("...", keytype=str, itemtype=float, itemCheck=4)
d = pexConfig.DictField("...", keytype=int, itemtype=int, itemCheck=4)

except Exception:
pass
Expand Down

0 comments on commit 7b5464c

Please sign in to comment.