Skip to content

Commit 14567e8

Browse files
chore: correct env names
1 parent 58c853a commit 14567e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/accuracy/sdk/describe-accuracy-tests.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ export function describeAccuracyTests(
1616
models: TestableModels,
1717
accuracyTestConfigs: AccuracyTestConfig[]
1818
) {
19-
const accuracyDatetime = process.env.ACCURACY_DATETIME;
19+
const accuracyDatetime = process.env.MDB_ACCURACY_DATETIME;
2020
if (!accuracyDatetime) {
21-
throw new Error("ACCURACY_DATETIME environment variable is not set");
21+
throw new Error("MDB_ACCURACY_DATETIME environment variable is not set");
2222
}
23-
const accuracyCommit = process.env.ACCURACY_COMMIT;
23+
const accuracyCommit = process.env.MDB_ACCURACY_COMMIT;
2424
if (!accuracyCommit) {
25-
throw new Error("ACCURACY_COMMIT environment variable is not set");
25+
throw new Error("MDB_ACCURACY_COMMIT environment variable is not set");
2626
}
2727

2828
if (!models.length) {

0 commit comments

Comments
 (0)