1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-07 22:18:17 -05:00

Update to GA

This commit is contained in:
Justin Baur 2025-01-22 12:49:10 -05:00
parent e0b5937d80
commit dd8ede6273
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View File

@ -35,14 +35,14 @@ public class DatabaseDataAttribute : DataAttribute
TheoryDataRowBase theory; TheoryDataRowBase theory;
if (!isEnabled) if (isEnabled)
{ {
theory = new TheoryDataRow() theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext);
.WithSkip("Not Enabled");
} }
else else
{ {
theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext); theory = new TheoryDataRow()
.WithSkip("Not Enabled");
} }
theory theory

View File

@ -13,8 +13,8 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" /> <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.10.0" /> <PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.10.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
<PackageReference Include="xunit.v3" Version="0.7.0-pre.19" /> <PackageReference Include="xunit.v3" Version="1.0.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0-pre.54"> <PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
</PackageReference> </PackageReference>