From 87020e0dafb93d980a43a5fde7ece1b33f16cba6 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Mon, 21 Apr 2025 19:23:03 +0200 Subject: [PATCH] fix path of tests --- apps/db-adapter/integration-tests/person.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/db-adapter/integration-tests/person.go b/apps/db-adapter/integration-tests/person.go index 43011a7..373dd23 100644 --- a/apps/db-adapter/integration-tests/person.go +++ b/apps/db-adapter/integration-tests/person.go @@ -11,7 +11,7 @@ import ( "github.com/vcscsvcscs/GenerationsHeritage/apps/db-adapter/pkg/api" ) -//go:embed payloads\create_other_person.json +//go:embed payloads/create_other_person.json var create_other_person []byte func CreatePersonTest(dbAdapterUri string, client *http.Client) func(t *testing.T) { @@ -98,7 +98,7 @@ func SoftDeletePersonTest(dbAdapterUri string, client *http.Client) func(t *test } } -//go:embed payloads\update_person.json +//go:embed payloads/update_person.json var update_person []byte func UpdatePersonTest(dbAdapterUri string, client *http.Client) func(t *testing.T) { @@ -131,7 +131,7 @@ func UpdatePersonTest(dbAdapterUri string, client *http.Client) func(t *testing. } } -//go:embed payloads\generate_invite_code.json +//go:embed payloads/generate_invite_code.json var generate_invite_code []byte func UpdatePersonWithInviteCodeTest(dbAdapterUri string, client *http.Client) func(t *testing.T) {