We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c0a2d3 commit 69d4fa2Copy full SHA for 69d4fa2
tests/NRedisStack.Tests/SkippableTheoryDiscoverer.cs
@@ -42,7 +42,7 @@ public SkippableTheoryDiscoverer(IMessageSink diagnosticMessageSink)
42
public virtual IEnumerable<IXunitTestCase> Discover(ITestFrameworkDiscoveryOptions discoveryOptions, ITestMethod testMethod, IAttributeInfo factAttribute)
43
{
44
Requires.NotNull(factAttribute, nameof(factAttribute));
45
- string[] skippingExceptionNames = ["Xunit.SkippableFact.SkipException"];
+ string[] skippingExceptionNames = new[] { "Xunit.SkippableFact.SkipException" };
46
TestMethodDisplay defaultMethodDisplay = discoveryOptions.MethodDisplayOrDefault();
47
48
IEnumerable<IXunitTestCase>? basis = this.theoryDiscoverer.Discover(discoveryOptions, testMethod, factAttribute);
0 commit comments