From 45a8dfd3ba345eebe268fc92d31612e14907fb01 Mon Sep 17 00:00:00 2001 From: Max Resnick Date: Sun, 29 Jan 2023 07:16:25 -0800 Subject: Fixes tests, use correct config file name --- internal/admin/model_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/admin/model_test.go') 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) } -- cgit v1.2.3