Skip to content

Commit

Permalink
Fix unit test (google#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlewis authored Jun 14, 2019
1 parent 8bcc047 commit 7da2d47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions github/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,8 @@ func Test_CheckRunMarshal(t *testing.T) {
Description: String("d"),
HTMLURL: String("h"),
ExternalURL: String("u"),
CreatedAt: &now,
UpdatedAt: &now,
CreatedAt: &Timestamp{now},
UpdatedAt: &Timestamp{now},
},
PullRequests: []*PullRequest{
{
Expand Down Expand Up @@ -696,8 +696,8 @@ func Test_CheckSuiteMarshal(t *testing.T) {
Description: String("d"),
HTMLURL: String("h"),
ExternalURL: String("u"),
CreatedAt: &now,
UpdatedAt: &now,
CreatedAt: &Timestamp{now},
UpdatedAt: &Timestamp{now},
},
Repository: &Repository{
ID: Int64(1),
Expand Down

0 comments on commit 7da2d47

Please sign in to comment.