From 3de454e1e9c2941b556c696ea86f5e394755c0a2 Mon Sep 17 00:00:00 2001 From: garrettladley Date: Thu, 25 Jan 2024 20:20:16 -0500 Subject: [PATCH] fix test config pathing --- backend/tests/api/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/api/helpers.go b/backend/tests/api/helpers.go index c5eaa7280..c9fce06dc 100644 --- a/backend/tests/api/helpers.go +++ b/backend/tests/api/helpers.go @@ -49,7 +49,7 @@ func spawnApp() (TestApp, error) { return TestApp{}, err } - configuration, err := config.GetConfiguration(filepath.Join("..", "..", "config")) + configuration, err := config.GetConfiguration(filepath.Join("..", "..", "..", "config")) if err != nil { return TestApp{}, err