Skip to content

Commit

Permalink
Merge pull request #72 from Lombiq/issue/OSOE-683
Browse files Browse the repository at this point in the history
OSOE-683: Update all NuGet dependencies
  • Loading branch information
Psichorex committed Sep 26, 2023
2 parents 4c17c8c + 8bb610d commit 089bea8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<ItemGroup>
<!-- Adding Node.js Extensions as a PackageReference will result in inclusion of its .props and .targets files
during Build. -->
<PackageReference Include="Lombiq.NodeJs.Extensions" Version="1.3.0" />
<PackageReference Include="Lombiq.NodeJs.Extensions" Version="1.3.2-alpha.0.osoe-683" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions Lombiq.NodeJs.Extensions.Tests/MutexReaderWriterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class MutexReaderWriterTest
public MutexReaderWriterTest(ITestOutputHelper testOutputHelper) => _testOutputHelper = testOutputHelper;

[Fact]
public void SyncReadersAndWriters()
public Task SyncReadersAndWriters()
{
var timeout = TimeSpan.FromMilliseconds(MaxWaitTimeMs);

Expand All @@ -39,7 +39,7 @@ public void SyncReadersAndWriters()
.Select(Task.Run)
.ToArray();

Task.WaitAll(tasks);
return Task.WhenAll(tasks);
}

private Action CreateReaderAction(int actionIndex, TimeSpan timeout) => () =>
Expand Down

0 comments on commit 089bea8

Please sign in to comment.