Skip to content

Commit 3b3c61d

Browse files
committed
ENV variables will be strings
1 parent 98e0561 commit 3b3c61d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/Test-EndToEnd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ describe('EndToEnd', () => {
217217
});
218218

219219
describe('GCSDataStore', () => {
220-
if (process.env.TRAVIS_SECURE_ENV_VARS !== true) {
220+
if (process.env.TRAVIS_SECURE_ENV_VARS !== 'true') {
221221
return;
222222
}
223223

test/Test-GCSDataStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const deleteFile = (file_name) => {
3838
};
3939

4040
describe('GCSDataStore', () => {
41-
if (process.env.TRAVIS_SECURE_ENV_VARS !== true) {
41+
if (process.env.TRAVIS_SECURE_ENV_VARS !== 'true') {
4242
return;
4343
}
4444

0 commit comments

Comments
 (0)