Skip to content

Commit

Permalink
chore: update nuget packages test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vicfergar committed Aug 17, 2023
1 parent 5fe48e4 commit b4c0899
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/HassClient.Core.Tests/HassClient.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/HassClient.WS.Tests/EnvironmentSetup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace HassClient.WS.Tests
[SetUpFixture]
public class EnvironmentSetup
{
private TestcontainersContainer hassContainer;
private IContainer hassContainer;

[OneTimeSetUp]
public async Task GlobalSetupAsync()
Expand All @@ -29,7 +29,7 @@ public async Task GlobalSetupAsync()
const int HassPort = 8123;
const string HassVersion = "latest";
const string tokenFilename = "TOKEN";
var testcontainersBuilder = new TestcontainersBuilder<TestcontainersContainer>()
var testcontainersBuilder = new ContainerBuilder()
.WithImage($"homeassistant/home-assistant:{HassVersion}")
.WithPortBinding(HassPort, assignRandomHostPort: true)
.WithExposedPort(HassPort)
Expand Down
10 changes: 5 additions & 5 deletions src/HassClient.WS.Tests/HassClient.WS.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Bogus" Version="34.0.1" />
<PackageReference Include="DotNet.Testcontainers" Version="1.6.0-beta.2104" />
<PackageReference Include="Bogus" Version="34.0.2" />
<PackageReference Include="Ninja.WebSockets" Version="1.1.8" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Testcontainers" Version="3.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit b4c0899

Please sign in to comment.