We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The two yaml files are equivalent to the same python dict (i. e. if they are loaded into a dict, they would be equal)
dict
But the comparison of data_regression.check does consider the order of the fields and a test can fail using one file and pass using the other.
data_regression.check
Is this by design or just a consequence of how the yaml files are compared?
abc: "123" foo: "bar"
foo: "bar" abc: "123"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The two yaml files are equivalent to the same python
dict
(i. e. if they are loaded into a dict, they would be equal)But the comparison of
data_regression.check
does consider the order of the fields and a test can fail using one file and pass using the other.Is this by design or just a consequence of how the yaml files are compared?
The text was updated successfully, but these errors were encountered: