Skip to content

Commit

Permalink
Merge branch 'fix-1002' into fix-1002-test
Browse files Browse the repository at this point in the history
  • Loading branch information
howard-e committed Feb 3, 2025
2 parents 7a59a94 + e5f78ed commit 79dee79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/data/process-test-directory/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -710,16 +710,16 @@ const processTestDirectory = async config => {
// ...setting2 string array of instructions
// ]
// }
const modeResult = {};
const settingsResult = {};
settings
.split(' ')
.forEach((setting, index) => (modeResult[setting] = common.instructions.mode[index]));
.forEach((setting, index) => (settingsResult[setting] = common.instructions.mode[index]));

common = {
...common,
instructions: {
...common.instructions,
mode: modeResult,
mode: settingsResult, // TODO: Replace 'mode' references with 'settings'
},
commands: common.commands.map(command => ({
...command,
Expand Down

0 comments on commit 79dee79

Please sign in to comment.