Skip to content

Commit

Permalink
[pocketbase#3877] fixed test messages typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ganigeorgiev committed Dec 4, 2023
1 parent 6327ac2 commit 5b2575b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pocketbase_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestNew(t *testing.T) {
}

if app.EncryptionEnv() != "test_encryption_env" {
t.Fatalf("Expected app.DataDir() test_encryption_env, got %q", app.EncryptionEnv())
t.Fatalf("Expected app.EncryptionEnv() test_encryption_env, got %q", app.EncryptionEnv())
}
}

Expand Down Expand Up @@ -77,7 +77,7 @@ func TestNewWithConfig(t *testing.T) {
}

if app.EncryptionEnv() != "test_encryption_env" {
t.Fatalf("Expected app.DataDir() %q, got %q", "test_encryption_env", app.EncryptionEnv())
t.Fatalf("Expected app.EncryptionEnv() %q, got %q", "test_encryption_env", app.EncryptionEnv())
}
}

Expand Down Expand Up @@ -126,7 +126,7 @@ func TestNewWithConfigAndFlags(t *testing.T) {
}

if app.EncryptionEnv() != "test_encryption_env_flag" {
t.Fatalf("Expected app.DataDir() %q, got %q", "test_encryption_env_flag", app.EncryptionEnv())
t.Fatalf("Expected app.EncryptionEnv() %q, got %q", "test_encryption_env_flag", app.EncryptionEnv())
}
}

Expand Down

0 comments on commit 5b2575b

Please sign in to comment.