Skip to content

Commit

Permalink
Merge pull request #34156 from jasonmalinowski/fix-iterationdata-attr…
Browse files Browse the repository at this point in the history
…ibute

Respect the iteration parameter in IterationData
  • Loading branch information
jasonmalinowski authored Mar 19, 2019
2 parents ff03b9c + fd76d1d commit 2b21099
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public sealed class IterationDataAttribute : DataAttribute
{
public IterationDataAttribute(int iterations = 100)
{
Iterations = 100;
Iterations = iterations;
}

public int Iterations { get; }
Expand Down

0 comments on commit 2b21099

Please sign in to comment.