Skip to content

Commit 38ac9fa

Browse files
added path
1 parent f247d94 commit 38ac9fa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/e2e-test/config/constants.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
repo_root = os.getenv('GITHUB_WORKSPACE', os.getcwd())
1717

1818
# Construct the absolute path to the JSON file
19-
#note: may have to remove 'KM_GENERIC' from below when running locally
20-
json_file_path = os.path.join(repo_root, 'KM_GENERIC', 'testdata', 'prompts.json')
19+
#note: may have to remove 'tests/e2e-test' from below when running locally
20+
json_file_path = os.path.join(repo_root, 'tests/e2e-test', 'testdata', 'prompts.json')
2121

2222
with open(json_file_path, 'r') as file:
2323
data = json.load(file)
2424
questions = data['questions']
2525

26-

0 commit comments

Comments
 (0)