From f7357539ba0b3be6816164c5e3b9b76e8c6fa5f6 Mon Sep 17 00:00:00 2001 From: Garrett Ladley <92384606+garrettladley@users.noreply.github.com> Date: Thu, 25 Jan 2024 20:20:57 -0500 Subject: [PATCH] Fix Test Config Pathing (#65) --- 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