Skip to content

Commit

Permalink
fix(nym): tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTFM committed Nov 29, 2023
1 parent 1dc3237 commit b428131
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkg/cosmos_sdk/block/parsing/msg_parsing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func TestParseIDsFromResults(t *testing.T) {
Events: []types6.Event{{
Type: connectiontypes.EventTypeConnectionOpenInit,
Attributes: []types6.EventAttribute{{
Key: []byte(connectiontypes.AttributeKeyConnectionID),
Value: []byte("myConnectionID"),
Key: connectiontypes.AttributeKeyConnectionID,
Value: "myConnectionID",
Index: true,
}},
}},
Expand All @@ -65,13 +65,13 @@ func TestParseIDsFromResults(t *testing.T) {
Type: connectiontypes.EventTypeConnectionOpenInit,
Attributes: []types6.EventAttribute{
{
Key: []byte(connectiontypes.AttributeKeyConnectionID),
Value: []byte("myConnectionID"),
Key: connectiontypes.AttributeKeyConnectionID,
Value: "myConnectionID",
Index: true,
},
{
Key: []byte(connectiontypes.AttributeKeyClientID),
Value: []byte("myClientID"),
Key: connectiontypes.AttributeKeyClientID,
Value: "myClientID",
Index: true,
},
},
Expand All @@ -80,13 +80,13 @@ func TestParseIDsFromResults(t *testing.T) {
Type: connectiontypes.EventTypeConnectionOpenTry,
Attributes: []types6.EventAttribute{
{
Key: []byte(connectiontypes.AttributeKeyCounterpartyClientID),
Value: []byte("myCounterpartyClientID"),
Key: connectiontypes.AttributeKeyCounterpartyClientID,
Value: "myCounterpartyClientID",
Index: true,
},
{
Key: []byte(connectiontypes.AttributeKeyCounterpartyConnectionID),
Value: []byte("myCounterpartyConnectionID"),
Key: connectiontypes.AttributeKeyCounterpartyConnectionID,
Value: "myCounterpartyConnectionID",
Index: true,
},
},
Expand Down

0 comments on commit b428131

Please sign in to comment.