Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dmxc committed Apr 11, 2024
1 parent db82b4f commit 3c71bda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ArtNetTests/TestOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void Teardown()
}

[Test]
[Timeout(10000)]
[Timeout(100000)]

Check warning on line 43 in ArtNetTests/TestOS.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest, 8.0.x)

'TimeoutAttribute' is obsolete: '.NET No longer supports aborting threads as it is not a safe thing to do. Update your tests to use CancelAfterAttribute instead'

Check warning on line 43 in ArtNetTests/TestOS.cs

View workflow job for this annotation

GitHub Actions / build (windows-latest, 8.0.x)

'TimeoutAttribute' is obsolete: '.NET No longer supports aborting threads as it is not a safe thing to do. Update your tests to use CancelAfterAttribute instead'
public async Task TestOnLinux()
{
if (!OperatingSystem.IsLinux())
Expand All @@ -50,7 +50,7 @@ public async Task TestOnLinux()
}

[Test]
[Timeout(10000)]
[Timeout(100000)]

Check warning on line 53 in ArtNetTests/TestOS.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest, 8.0.x)

'TimeoutAttribute' is obsolete: '.NET No longer supports aborting threads as it is not a safe thing to do. Update your tests to use CancelAfterAttribute instead'
public async Task TestOnWindows()
{
if (!OperatingSystem.IsWindows())
Expand All @@ -60,7 +60,7 @@ public async Task TestOnWindows()
}

[Test]
[Timeout(10000)]
[Timeout(100000)]
public async Task TestOnMackOS()
{
if (!OperatingSystem.IsMacOS())
Expand Down

0 comments on commit 3c71bda

Please sign in to comment.