Skip to content

Commit

Permalink
Restrict unless it's clear we want otherwise :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Nov 21, 2024
1 parent d7cf953 commit 1b1d67d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.VisualStudio.TestTools.UnitTesting;
/// <summary>
/// Attribute to define dynamic data from a CSV file for a test method.
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false/*TODO: Do we want to allow multiple*/)]
public sealed class CsvDataSourceAttribute : Attribute, ITestDataSource
{
// Template used to map from a filename to a DB connection string
Expand Down

0 comments on commit 1b1d67d

Please sign in to comment.