Skip to content

Commit

Permalink
Tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzerntev committed Jan 11, 2024
1 parent ffc3cbf commit d5503d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ static int compare(
@Bind("$node") Node thisNode,
@Cached IntervalToMillisStaticNode toMillisNode) {
long mil1 = toMillisNode.execute(thisNode, interval1);
long mil2 = toMillisNode.execute(thisNode, interval1);
long mil2 = toMillisNode.execute(thisNode, interval2);

return Long.compare(mil1, mil2);
}
Expand Down

0 comments on commit d5503d2

Please sign in to comment.