Skip to content

Commit b6b077f

Browse files
committed
Version 3.15.4. Enable NUnit 4.
1 parent 92b88e9 commit b6b077f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GitVersion.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next-version: 3.15.3
1+
next-version: 3.15.4
22
mode: ContinuousDelivery
33
legacy-semver-padding: 5
44
build-metadata-padding: 5

src/NUnitEngine/nunit.engine.core/Drivers/NUnit3DriverFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class NUnit3DriverFactory : IDriverFactory
2020
/// <param name="reference">An AssemblyName referring to the possible test framework.</param>
2121
public bool IsSupportedTestFramework(AssemblyName reference)
2222
{
23-
return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major == 3;
23+
return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major >= 3;
2424
}
2525

2626
#if NETFRAMEWORK

0 commit comments

Comments
 (0)