Skip to content

Commit

Permalink
fix: import test
Browse files Browse the repository at this point in the history
  • Loading branch information
lfleischmann committed Sep 27, 2024
1 parent 95aa8da commit 0dc6d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/cmd/user/import_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (s *importSuite) Test_addToDatabase() {

s.SetupTest()
tt.wantErr(t, addToDatabase(tt.args.entries, tt.args.persister), fmt.Sprintf("addToDatabase(%v, %v)", tt.args.entries, tt.args.persister))
users, err := tt.args.persister.GetUserPersister().List(0, 100, uuid.Nil, "", "", "")
users, err := tt.args.persister.GetUserPersister().List(0, 100, []uuid.UUID{}, "", "", "")
log.Println(users)
s.NoError(err)
s.Equal(tt.wantNumUsers, len(users))
Expand Down

0 comments on commit 0dc6d59

Please sign in to comment.