aboutsummaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2021-10-21 14:37:40 +0800
committerGitHub <noreply@github.com>2021-10-21 14:37:40 +0800
commit5879ab83b5fab57a71aed4c8b3c4d9293b4a4398 (patch)
tree40fa7a6d58405626819eb4643f1a30118f13674e /integrations
parent9046c022d270cfd5b1187e344af939cef3a873cf (diff)
downloadgitea-5879ab83b5fab57a71aed4c8b3c4d9293b4a4398.tar.gz
gitea-5879ab83b5fab57a71aed4c8b3c4d9293b4a4398.zip
Fix heatmap test (#17381)
Diffstat (limited to 'integrations')
-rw-r--r--integrations/api_user_heatmap_test.go6
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)