Skip to content

Commit

Permalink
Trick for increasing coverage!
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavohenke committed Aug 25, 2024
1 parent cd7e867 commit 2fb4ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flow-control/teardown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class Teardown implements FlowController {

constructor({
logger,
spawn = baseSpawn,
spawn,
commands,
}: {
logger: Logger;
Expand All @@ -24,7 +24,7 @@ export class Teardown implements FlowController {
commands: readonly string[];
}) {
this.logger = logger;
this.spawn = spawn;
this.spawn = spawn || baseSpawn;
this.teardown = commands;
}

Expand Down

0 comments on commit 2fb4ed1

Please sign in to comment.