1
Fork 0

Forgot about non-sequentiality. Fingers crossed this works.

This commit is contained in:
Peter - Ubuntu dual boot 2021-09-23 03:20:31 +01:00
parent 72edfc3566
commit 69211688f4
1 changed files with 5 additions and 4 deletions

View File

@ -24,8 +24,6 @@ func addContext(ctx context.Context) client.Option {
func TestAlbumCover(t *testing.T) {
db := test_utils.DatabaseTest(t)
TestCoverID := 6
rootAlbum := models.Album{
Title: "root",
Path: "/photos",
@ -45,7 +43,6 @@ func TestAlbumCover(t *testing.T) {
Title: "child2",
Path: "/photos/child2",
ParentAlbumID: &rootAlbum.ID,
CoverID: &TestCoverID,
},
}
@ -90,6 +87,10 @@ func TestAlbumCover(t *testing.T) {
return
}
if !assert.NoError(t, db.Model(&children[1]).Update("cover_id", &photos[5].ID).Error) {
return
}
pass := "<hashed_password>"
regularUser := models.User{
Username: "user1",
@ -167,7 +168,7 @@ func TestAlbumCover(t *testing.T) {
postErr := c.Post(
q,
&resp,
client.Var("albumID", &children[1].ID),
client.Var("albumID", &children[0].ID),
addContext(ctx),
)
if !assert.NoError(t, postErr) {