Reorder tasks, lists and kanban buckets #923

Merged
konrad merged 15 commits from feature/reorder into main 2021-07-28 19:06:42 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 3dc4ddd129 - Show all commits

View File

@ -87,8 +87,8 @@ func TestBucket_ReadAll(t *testing.T) {
buckets := bucketsInterface.([]*Bucket)
assert.Len(t, buckets, 3)
assert.Equal(t, int64(2), buckets[0].Tasks[1].ID)
assert.Equal(t, int64(33), buckets[0].Tasks[0].ID)
assert.Equal(t, int64(2), buckets[0].Tasks[0].ID)
assert.Equal(t, int64(33), buckets[0].Tasks[1].ID)
})
t.Run("accessed by link share", func(t *testing.T) {
db.LoadAndAssertFixtures(t)