Skip to content

Commit 47416df

Browse files
committed
fix(tests): instantiate Bootstrapper in a single expression for clarity
Signed-off-by: Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
1 parent 040a689 commit 47416df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/Changelog/BootstrapperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function generate(string $workingDirectory): string
6969
}
7070
};
7171

72-
$result = new Bootstrapper($this->filesystem, $historyGenerator)
72+
$result = (new Bootstrapper($this->filesystem, $historyGenerator))
7373
->bootstrap($workingDirectory);
7474

7575
self::assertTrue($result->configCreated);

0 commit comments

Comments
 (0)