Skip to content

Commit 0e2d0d0

Browse files
committed
Fix wrong unconvert in api_issue_stopwatch_test.go
1 parent e0bed86 commit 0e2d0d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/api_issue_stopwatch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func TestAPIListStopWatches(t *testing.T) {
3838
assert.EqualValues(t, issue.Title, apiWatches[0].IssueTitle)
3939
assert.EqualValues(t, repo.Name, apiWatches[0].RepoName)
4040
assert.EqualValues(t, repo.OwnerName, apiWatches[0].RepoOwnerName)
41-
assert.Greater(t, apiWatches[0].Seconds, 0)
41+
assert.Greater(t, apiWatches[0].Seconds, int64(0))
4242
}
4343
}
4444

0 commit comments

Comments
 (0)