Skip to content

Commit 4475c4f

Browse files
committed
actually fix test!
1 parent 74043f7 commit 4475c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

models/project/project_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ func TestProjectsSort(t *testing.T) {
9292
}{
9393
{
9494
sortType: "default",
95-
wants: []int64{1, 3, 2, 4, 5, 6},
95+
wants: []int64{1, 3, 2, 6, 5, 4},
9696
},
9797
{
9898
sortType: "oldest",
9999
wants: []int64{4, 5, 6, 2, 3, 1},
100100
},
101101
{
102102
sortType: "recentupdate",
103-
wants: []int64{1, 3, 2, 4, 5, 6},
103+
wants: []int64{1, 3, 2, 6, 5, 4},
104104
},
105105
{
106106
sortType: "leastupdate",

0 commit comments

Comments
 (0)