Skip to content

Commit

Permalink
Fixed config test after app-url change.
Browse files Browse the repository at this point in the history
  • Loading branch information
tvrzna committed Aug 21, 2023
1 parent a126ba1 commit d04d46e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ func TestLoadConfigWithData(t *testing.T) {

func TestGetAppUrlEmpty(t *testing.T) {
c := LoadConfig([]string{})
if c.getAppUrl() != "http://localhost:5000" {
t.Fatalf("TestGetAppUrlEmpty: unexpected default app url '%s'", "http://localhost:5000")
if c.getAppUrl() != "" {
t.Fatalf("TestGetAppUrlEmpty: unexpected default app url '%s'", c.getAppUrl())
}
}

Expand Down

0 comments on commit d04d46e

Please sign in to comment.