Skip to content

Commit

Permalink
Fix lint warnings in literals_test.go
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Nov 14, 2024
1 parent a24255a commit 87eea97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flyteidl/clients/go/coreutils/literals_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,9 @@ func TestMakeLiteralForType(t *testing.T) {

// Now check if the Binary values match
var expectedVal, actualVal map[string]interface{}
err = msgpack.Unmarshal(expectedBinary.Value, &expectedVal)
err = msgpack.Unmarshal(expectedBinary.GetValue(), &expectedVal)
assert.NoError(t, err)
err = msgpack.Unmarshal(actualBinary.Value, &actualVal)
err = msgpack.Unmarshal(actualBinary.GetValue(), &actualVal)
assert.NoError(t, err)

// Finally, assert that the deserialized values are equal
Expand Down

0 comments on commit 87eea97

Please sign in to comment.