Skip to content

Commit

Permalink
Fix order of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenchrist committed Feb 22, 2024
1 parent 9604e6c commit b551656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacontract/export/sodacl_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def to_sodacl(data_contract_spec: DataContractSpecification, check_types: bool =
k, v = to_checks(model_key, model_value, check_types)
sodacl[k] = v
add_quality_checks(sodacl, data_contract_spec)
sodacl_yaml_str = yaml.dump(sodacl, default_flow_style=False)
sodacl_yaml_str = yaml.dump(sodacl, default_flow_style=False, sort_keys=False)
return sodacl_yaml_str
except Exception as e:
return f"Error: {e}"
Expand Down

0 comments on commit b551656

Please sign in to comment.