Skip to content

Commit

Permalink
Merge pull request maticnetwork#1206 from maticnetwork/mardizzone/fix…
Browse files Browse the repository at this point in the history
…_grpc_test

Fix gRPC test due to new hencoding
  • Loading branch information
marcello33 authored Nov 15, 2024
2 parents 9f9a1b4 + f0b7beb commit 7ab304c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bor/client/grpc/grpc_util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ func TestToBlockNumArg(t *testing.T) {
{
name: "Positive number",
input: big.NewInt(12345),
expected: "12345",
expected: "0x3039",
},
{
name: "Zero",
input: big.NewInt(0),
expected: "0",
expected: "0x0",
},
{
name: "Negative number",
Expand Down

0 comments on commit 7ab304c

Please sign in to comment.