Jesse Myers
Results
2
issues of
Jesse Myers
This [line](https://github.com/joseph-roitman/pytest-snapshot/blob/master/pytest_snapshot/plugin.py#L174): ```py if encoded_expected_value is None or encoded_value != encoded_expected_value: ``` is using `!=` rather than relying on the internal `compare` function, which means that this code cannot be...
Many of our shared types define nullable (or optional) fields. When we pick a field from type, we pretty much include it as-is, inheriting the original fields nullable (or optional)...