Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed May 17, 2023
1 parent a4ae672 commit 4fd31b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/relayer/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func Test_DecodeMessageSentData(t *testing.T) {
name string
event *bridge.BridgeMessageSent
wantEventType EventType
wantCanonicalToken CanonicalToken
wantCanonicalToken *CanonicalToken
wantAmount *big.Int
wantError error
}{
Expand All @@ -164,7 +164,7 @@ func Test_DecodeMessageSentData(t *testing.T) {
},
},
EventTypeSendERC20,
CanonicalToken{
&CanonicalToken{
ChainId: big.NewInt(31336),
Addr: common.HexToAddress("0xe4337137828c93D0046212ebDa8a82a24356b67B"),
Decimals: uint8(18),
Expand All @@ -184,7 +184,7 @@ func Test_DecodeMessageSentData(t *testing.T) {
},
},
EventTypeSendETH,
CanonicalToken{},
&CanonicalToken{},
big.NewInt(1),
nil,
},
Expand Down

0 comments on commit 4fd31b7

Please sign in to comment.