-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Value Pools and Value Pool Fuzzer #2
Add Value Pools and Value Pool Fuzzer #2
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonathanheitzmann remove TODOs after editing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonathanheitzmann remove TODOs after editing
self._STRING_POOL = list(sorted(set(self._STRING_POOL))) | ||
self._BOOL_POOL = list(sorted(set(self._BOOL_POOL))) | ||
self._BYTE_POOL = list(sorted(set(self._BYTE_POOL))) | ||
self._LIST_POOL = list(sorted(set(map(tuple, self._LIST_POOL)))) # lists need to be converted to tuples for set |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
custom_components/test/fuzzing/fuzzer_utils/ValuePool.py:123: in _remove_duplicates
self._LIST_POOL = list(sorted(set(map(tuple, self._LIST_POOL)))) # lists need to be converted to tuples for set
E TypeError: '<' not supported between instances of 'str' and 'bool'
@jonathanheitzmann I think this commit f23d947 is not working. |
Fix value pool fuzzer in faaadb7 |
New pull request for @jonathanheitzmann