Skip to content

Commit

Permalink
Cambio signo distinto por igual y arreglo 8 tests con un caracter
Browse files Browse the repository at this point in the history
  • Loading branch information
capitantoto committed Nov 30, 2016
1 parent 9245f40 commit 46073f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydatajson/pydatajson.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def dataset_result(index, dataset):
"status": "OK" if error_tree.total_errors == 0 else "ERROR",
"error": {
"catalog": {
"status": "OK" if error_tree.errors != {} else "ERROR",
"status": "OK" if error_tree.errors == {} else "ERROR",
"title": datajson.get("title")
},
"dataset": datasets_results
Expand Down

0 comments on commit 46073f3

Please sign in to comment.