From 4475c4f6fc43d988d50868a0aa062c1d2bbbc339 Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Mon, 22 Jan 2024 13:43:10 +0100 Subject: [PATCH] actually fix test! --- models/project/project_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/project/project_test.go b/models/project/project_test.go index 8a6dcfee9b5..8fbbdedecf0 100644 --- a/models/project/project_test.go +++ b/models/project/project_test.go @@ -92,7 +92,7 @@ func TestProjectsSort(t *testing.T) { }{ { sortType: "default", - wants: []int64{1, 3, 2, 4, 5, 6}, + wants: []int64{1, 3, 2, 6, 5, 4}, }, { sortType: "oldest", @@ -100,7 +100,7 @@ func TestProjectsSort(t *testing.T) { }, { sortType: "recentupdate", - wants: []int64{1, 3, 2, 4, 5, 6}, + wants: []int64{1, 3, 2, 6, 5, 4}, }, { sortType: "leastupdate",