Skip to content

Commit 257055d

Browse files
committed
#58 CI strykey
1 parent 892c055 commit 257055d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI-mutation-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
import os
3535
base_path = os.environ.get('BASE_PATH', 'src/environments/')
3636
with open(base_path + "keys.ts", "w") as fileWithKeys:
37-
fileWithKeys.write('export const AUTHORITY = ') + str(os.environ['SCOPES']).split(",") + ';';
37+
fileWithKeys.write('export const SCOPES = ') + str(os.environ['SCOPES']).split(",") + ';';
3838
fileWithKeys.write('\nexport const CLIENT_ID = ' + os.environ['CLIENT_ID']) + ';';
39-
fileWithKeys.write('\nexport const SCOPES = ' + os.environ['AUTHORITY']) + ';';
39+
fileWithKeys.write('\nexport const AUTHORITY = ' + os.environ['AUTHORITY']) + ';';
4040
4141
- name: Run the test
4242
run: npm run ci-test --if-present

0 commit comments

Comments
 (0)