Skip to content
Snippets Groups Projects
Commit 2a7962c5 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Merge branch 'kluyvert-master-patch-54000' into 'master'

Swap order of dicts for DeepDiff

See merge request !1032
parents f8870d91 cf022895
No related branches found
No related tags found
1 merge request!1032Swap order of dicts for DeepDiff
......@@ -374,7 +374,7 @@ def test_xfel_calibrate(
out_folder / metadata_file).get("retrieved-constants", {})
ccvs_reference = load_yaml(
reference_folder / metadata_file).get("retrieved-constants", {})
ccvs_diff = DeepDiff(ccvs_test, ccvs_reference, ignore_order=True)
ccvs_diff = DeepDiff(ccvs_reference, ccvs_test, ignore_order=True)
assert ccvs_diff == {}, "Found difference in the metadata for the retrieved Constants." # noqa
LOGGER.info("Retrieved CCVs validated.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment