Skip to content

Commit

Permalink
Version 3.15.4. Enable NUnit 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Apr 24, 2023
1 parent 92b88e9 commit b6b077f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 3.15.3
next-version: 3.15.4
mode: ContinuousDelivery
legacy-semver-padding: 5
build-metadata-padding: 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class NUnit3DriverFactory : IDriverFactory
/// <param name="reference">An AssemblyName referring to the possible test framework.</param>
public bool IsSupportedTestFramework(AssemblyName reference)
{
return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major == 3;
return NUNIT_FRAMEWORK.Equals(reference.Name, StringComparison.OrdinalIgnoreCase) && reference.Version.Major >= 3;
}

#if NETFRAMEWORK
Expand Down

0 comments on commit b6b077f

Please sign in to comment.