summaryrefslogtreecommitdiff
path: root/internal/authentication/file_user_provider_test.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2024-12-29 14:48:26 +1100
committerGitHub <noreply@github.com>2024-12-29 14:48:26 +1100
commit86180aa278d7fd30998d1ad2c29d16c38cd5654c (patch)
treeebbb8eb9e14ccfc90d0ec87d4a3dffb2a2898566 /internal/authentication/file_user_provider_test.go
parentb50a56b59805554a54636fd9fca8509f8ddce46c (diff)
refactor: yaml vs yml (#8527)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/authentication/file_user_provider_test.go')
-rw-r--r--internal/authentication/file_user_provider_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/authentication/file_user_provider_test.go b/internal/authentication/file_user_provider_test.go
index f91501719..9ae90bd51 100644
--- a/internal/authentication/file_user_provider_test.go
+++ b/internal/authentication/file_user_provider_test.go
@@ -944,7 +944,7 @@ users:
func WithDatabase(t *testing.T, content []byte, f func(path string)) {
dir := t.TempDir()
- db, err := os.CreateTemp(dir, "users_database.*.yaml")
+ db, err := os.CreateTemp(dir, "users_database.*.yml")
require.NoError(t, err)
_, err = db.Write(content)