Skip to content

Commit 77cb82a

Browse files
Fix tests
1 parent beb7f68 commit 77cb82a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

dotnet/Vaas/test/Vaas.Test/Authentication/AuthenticatorTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,6 @@ await Assert.ThrowsAsync<AuthenticationException>(
224224
await Assert.ThrowsAsync<AuthenticationException>(
225225
() => _authenticator.GetTokenAsync(CancellationToken.None)
226226
);
227-
sw.Elapsed.Should().BeGreaterOrEqualTo(TimeSpan.FromSeconds(1));
227+
sw.Elapsed.Should().BeGreaterThanOrEqualTo(TimeSpan.FromSeconds(1));
228228
}
229229
}

dotnet/Vaas/test/Vaas.Test/Vaas.Test.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="DotNetEnv" Version="3.1.1" />
11+
<PackageReference Include="FluentAssertions" Version="8.0.1" />
1112
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1213
<PackageReference Include="Moq.Contrib.HttpClient" Version="1.4.0" />
1314
<PackageReference Include="Snapshooter.Xunit" Version="1.0.1" />

dotnet/Vaas/test/Vaas.Test/VaasTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using System.Net.Http.Json;
99
using System.Reflection;
1010
using System.Security.Authentication;
11-
using System.Security.Cryptography;
1211
using System.Text;
1312
using System.Text.Json;
1413
using System.Threading;

0 commit comments

Comments
 (0)