Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Sep 19, 2023
1 parent 59fbe07 commit a84c23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serde/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestSerdeTime(t *testing.T) {

func testSerdeTime(t *testing.T, x time.Time) {
b := serdeinternal.Serialize(x)
out, b := serdeinternal.Deserialize(b)
out, _ := serdeinternal.Deserialize(b)

if !x.Equal(out.(time.Time)) {
t.Errorf("expected %v, got %v", x, out)
Expand Down

0 comments on commit a84c23f

Please sign in to comment.