Skip to content

Commit

Permalink
convert build time to utc
Browse files Browse the repository at this point in the history
  • Loading branch information
chris124567 committed Sep 19, 2024
1 parent 5fd7044 commit e16b41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ func TestAPI(t *testing.T) {
check(t, "Version", build.Version(), resp.Version)
check(t, "Commit", build.Commit(), resp.Commit)
check(t, "OS", runtime.GOOS, resp.OS)
check(t, "BuildTime", build.Time(), resp.BuildTime)
check(t, "BuildTime", build.Time().UTC(), resp.BuildTime.UTC())
}

{
Expand Down

0 comments on commit e16b41c

Please sign in to comment.