aboutsummaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-10-21 00:39:25 +0200
committerGitHub <noreply@github.com>2020-10-20 17:39:25 -0500
commit48a80096bbc7bb4b0fef487df8f176c08f0bf609 (patch)
treeb78a19afaa149686d0171327e5837dff8a2a87ec /integrations
parent70cb9e38e29e7233bfc60ee69ad3e4300981c8f0 (diff)
downloadgitea-48a80096bbc7bb4b0fef487df8f176c08f0bf609.tar.gz
gitea-48a80096bbc7bb4b0fef487df8f176c08f0bf609.zip
Update heatmap fixtures to restore tests (#13224)
* hotfix * update ...
Diffstat (limited to 'integrations')
-rw-r--r--integrations/api_user_heatmap_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/api_user_heatmap_test.go b/integrations/api_user_heatmap_test.go
index 159d70e867..105d39e9ae 100644
--- a/integrations/api_user_heatmap_test.go
+++ b/integrations/api_user_heatmap_test.go
@@ -26,7 +26,7 @@ func TestUserHeatmap(t *testing.T) {
var heatmap []*models.UserHeatmapData
DecodeJSON(t, resp, &heatmap)
var dummyheatmap []*models.UserHeatmapData
- dummyheatmap = append(dummyheatmap, &models.UserHeatmapData{Timestamp: 1571616000, Contributions: 1})
+ dummyheatmap = append(dummyheatmap, &models.UserHeatmapData{Timestamp: 1603152000, Contributions: 1})
assert.Equal(t, dummyheatmap, heatmap)
}