Skip to content

Commit

Permalink
fix: e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
simulot committed Jun 2, 2024
1 parent 62175d1 commit 7579f25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions immich/e2e_asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func getImmichClient(t *testing.T, host, key, _ string) *ImmichClient {
if host == "" {
host = "http://localhost:2283"
}
ic, err := NewImmichClient(host, key, false)
ic, err := NewImmichClient(host, key)
if err != nil {
t.Error(err)
return nil
Expand All @@ -63,7 +63,7 @@ func getImmichClient(t *testing.T, host, key, _ string) *ImmichClient {
}

func checkImmich(t *testing.T, host, key, _ string) {
ic, err := NewImmichClient(host, key, false)
ic, err := NewImmichClient(host, key)
if err != nil {
t.Errorf("can't connect to %s: %s", host, err)
}
Expand Down

0 comments on commit 7579f25

Please sign in to comment.