mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
Fix attribute
This commit is contained in:
parent
e51cf7cc63
commit
f33c060ff5
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ public class WindowsOnlyDataTestMethod : DataTestMethodAttribute
|
|||
{
|
||||
public override TestResult[] Execute(ITestMethod testMethod)
|
||||
{
|
||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||
{
|
||||
var message = $"Test not executed on other platforms than Windows";
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ public class WindowsOnlyTestMethod : TestMethodAttribute
|
|||
{
|
||||
public override TestResult[] Execute(ITestMethod testMethod)
|
||||
{
|
||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||
{
|
||||
var message = $"Test not executed on other platforms than Windows";
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue