1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-21 13:35:49 +02:00

[#3877] fixed test messages typo

This commit is contained in:
Gani Georgiev 2023-12-04 18:09:29 +02:00
parent 6327ac20da
commit 5b2575b754

View File

@ -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())
}
}
@ -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())
}
}
@ -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())
}
}