diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-10-21 14:37:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 14:37:40 +0800 |
commit | 5879ab83b5fab57a71aed4c8b3c4d9293b4a4398 (patch) | |
tree | 40fa7a6d58405626819eb4643f1a30118f13674e /integrations | |
parent | 9046c022d270cfd5b1187e344af939cef3a873cf (diff) | |
download | gitea-5879ab83b5fab57a71aed4c8b3c4d9293b4a4398.tar.gz gitea-5879ab83b5fab57a71aed4c8b3c4d9293b4a4398.zip |
Fix heatmap test (#17381)
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/api_user_heatmap_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/integrations/api_user_heatmap_test.go b/integrations/api_user_heatmap_test.go index a0f0552a17..019cf7dcac 100644 --- a/integrations/api_user_heatmap_test.go +++ b/integrations/api_user_heatmap_test.go @@ -8,8 +8,10 @@ import ( "fmt" "net/http" "testing" + "time" "code.gitea.io/gitea/models" + "code.gitea.io/gitea/modules/timeutil" "github.com/stretchr/testify/assert" ) @@ -20,6 +22,10 @@ func TestUserHeatmap(t *testing.T) { normalUsername := "user2" session := loginUser(t, adminUsername) + var fakeNow = time.Date(2011, 10, 20, 0, 0, 0, 0, time.Local) + timeutil.Set(fakeNow) + defer timeutil.Unset() + urlStr := fmt.Sprintf("/api/v1/users/%s/heatmap", normalUsername) req := NewRequest(t, "GET", urlStr) resp := session.MakeRequest(t, req, http.StatusOK) |