From 8b3e843cb6676ab163a71e4caf3d3d728c6dde2b Mon Sep 17 00:00:00 2001 From: Kavindu Dodanduwa Date: Mon, 13 Nov 2023 14:50:22 -0800 Subject: [PATCH] fix test files Signed-off-by: Kavindu Dodanduwa --- test/integration/evaluation_test.go | 2 +- test/integration/json_evaluator_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/evaluation_test.go b/test/integration/evaluation_test.go index 99345086a..d0b1ed675 100644 --- a/test/integration/evaluation_test.go +++ b/test/integration/evaluation_test.go @@ -32,7 +32,7 @@ func TestEvaluation(t *testing.T) { }), Options: &godog.Options{ Format: "pretty", - Paths: []string{"../../../spec/specification/assets/gherkin/evaluation.feature"}, + Paths: []string{"../../spec/specification/assets/gherkin/evaluation.feature"}, TestingT: t, // Testing instance that will run subtests. Strict: true, }, diff --git a/test/integration/json_evaluator_test.go b/test/integration/json_evaluator_test.go index e4c205cb8..cfae8803b 100644 --- a/test/integration/json_evaluator_test.go +++ b/test/integration/json_evaluator_test.go @@ -27,7 +27,7 @@ func TestJsonEvaluator(t *testing.T) { }), Options: &godog.Options{ Format: "pretty", - Paths: []string{"../../../test-harness/gherkin/flagd-json-evaluator.feature"}, + Paths: []string{"../../test-harness/gherkin/flagd-json-evaluator.feature"}, TestingT: t, // Testing instance that will run subtests. Strict: true, },