Skip to content

Commit

Permalink
checking upper bound
Browse files Browse the repository at this point in the history
  • Loading branch information
vmahajanhopper committed Oct 19, 2023
1 parent a2e05a3 commit ca58124
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ class DataDogSpanPropagationSpec extends AnyWordSpec with Matchers with OptionVa
String expectedHex3 = "c5863f7d672b65bf";
String actualHex3 = dataDogPropagation.decodeUnsignedLongToHex("14233133480185390527");
assertEquals(expectedHex1, actualHex1);

String expectedHex4 = "ffffffffffffffff";
String actualHex4 = dataDogPropagation.decodeUnsignedLongToHex("18446744073709551615");
assertEquals(expectedHex4, actualHex4);

}
}

Expand Down

0 comments on commit ca58124

Please sign in to comment.