Skip to content

Commit

Permalink
fix code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Jun 18, 2018
1 parent 0bd432e commit ac5ee79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/client/unittests/nosetest/services/argsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class ArgumentsService implements IArgumentsService {
if (Array.isArray(argumentToRemoveOrFilter)) {
argumentToRemoveOrFilter.forEach(item => {
if (OptionsWithArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
optionsWithArgsToRemove.push(item);
}
if (OptionsWithoutArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
Expand Down
2 changes: 1 addition & 1 deletion src/client/unittests/pytest/services/argsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class ArgumentsService implements IArgumentsService {
if (Array.isArray(argumentToRemoveOrFilter)) {
argumentToRemoveOrFilter.forEach(item => {
if (OptionsWithArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
optionsWithArgsToRemove.push(item);
}
if (OptionsWithoutArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
Expand Down
2 changes: 1 addition & 1 deletion src/client/unittests/unittest/services/argsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ArgumentsService implements IArgumentsService {
if (Array.isArray(argumentToRemoveOrFilter)) {
argumentToRemoveOrFilter.forEach(item => {
if (OptionsWithArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
optionsWithArgsToRemove.push(item);
}
if (OptionsWithoutArguments.indexOf(item) >= 0) {
optionsWithoutArgsToRemove.push(item);
Expand Down

0 comments on commit ac5ee79

Please sign in to comment.