diff options
Diffstat (limited to 'internal/admin/model_test.go')
| -rw-r--r-- | internal/admin/model_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/admin/model_test.go b/internal/admin/model_test.go index e8f6e33..85ca8f4 100644 --- a/internal/admin/model_test.go +++ b/internal/admin/model_test.go @@ -78,9 +78,9 @@ func TestConfigReconcile(t *testing.T) { tempDir := t.TempDir() // make "fake" repo testRepo := filepath.Join(tempDir, "testrepo.git") - testConf := filepath.Join(testRepo, "conf") + testConf := filepath.Join(testRepo, "config") os.Mkdir(testRepo, 0750) - f, err := os.Create(filepath.Join(testRepo, "conf")) + f, err := os.Create(filepath.Join(testRepo, "config")) if err != nil { t.Fatalf("couldn't create testdir, %s", err) } |