Skip to content

Commit

Permalink
Unit test fix for #790
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 13, 2015
1 parent cd2a819 commit 4265e1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public int compare(JsonNode o1, JsonNode o2) {
double d1 = ((NumericNode) o1).asDouble();
double d2 = ((NumericNode) o2).asDouble();
if (d1 == d2) { // strictly equals because it's integral value
return 1;
return 0;
}
}
return 0;
Expand Down

0 comments on commit 4265e1d

Please sign in to comment.