Skip to content

Commit a85992d

Browse files
Refactor variable
1 parent 4e36fdb commit a85992d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/helpers/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1326,7 +1326,7 @@ exports.setEnforceSettingsConfig = (bsConfig) => {
13261326
let specConfigs = bsConfig.run_settings.specs;
13271327
// if multiple specs are passed, convert it into an array.
13281328
if(specConfigs && specConfigs.includes(',')) {
1329-
specConfigs = JSON.stringify(bsConfig.run_settings.specs.split(','));
1329+
specConfigs = JSON.stringify(specConfigs.split(','));
13301330
}
13311331
let spec_pattern_args = 'specPattern="'+specConfigs+'"';
13321332
config_args = this.isUndefined(config_args) ? spec_pattern_args : config_args + ',' + spec_pattern_args;

0 commit comments

Comments
 (0)