Skip to content

Commit

Permalink
Add some "s" where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Cédric L. Charlier committed Feb 12, 2015
1 parent eec804f commit 9d6a770
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions NBi.NUnit.Runtime/Configuration/FailureReportProfileElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@ public FailureReportProfileElement()
}


[ConfigurationProperty("max-sample-item", IsRequired = false, DefaultValue = 10)]
[ConfigurationProperty("max-sample-items", IsRequired = false, DefaultValue = 10)]
public int MaxSampleItem
{
get
{
return (int)this["max-sample-item"];
return (int)this["max-sample-items"];
}
set
{
this["max-sample-item"] = value;
this["max-sample-items"] = value;
}
}

[ConfigurationProperty("threshold-sample-item", IsRequired = false, DefaultValue = 15)]
[ConfigurationProperty("threshold-sample-items", IsRequired = false, DefaultValue = 15)]
public int ThresholdSampleItem
{
get
{
return (int)this["threshold-sample-item"];
return (int)this["threshold-sample-items"];
}
set
{
this["threshold-sample-item"] = value;
this["threshold-sample-items"] = value;
}
}

Expand Down

0 comments on commit 9d6a770

Please sign in to comment.