Skip to content

Commit 7fda267

Browse files
committed
fix BombardierTestsRunner constructor to allow null options
1 parent 342bee9 commit 7fda267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QAToolKit.Engine.Bombardier/BombardierTestsRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class BombardierTestsRunner
1515
private readonly IList<BombardierTest> _bombardierTests;
1616
private readonly BombardierOutputOptions _bombardierParserOptions;
1717

18-
public BombardierTestsRunner(IList<BombardierTest> bombardierTests, Action<BombardierOutputOptions> options)
18+
public BombardierTestsRunner(IList<BombardierTest> bombardierTests, Action<BombardierOutputOptions> options = null)
1919
{
2020
_bombardierTests = bombardierTests;
2121
_bombardierParserOptions = new BombardierOutputOptions();

0 commit comments

Comments
 (0)