mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 06:28:14 -05:00
Update to GA
This commit is contained in:
parent
e0b5937d80
commit
dd8ede6273
@ -35,14 +35,14 @@ public class DatabaseDataAttribute : DataAttribute
|
||||
|
||||
TheoryDataRowBase theory;
|
||||
|
||||
if (!isEnabled)
|
||||
if (isEnabled)
|
||||
{
|
||||
theory = new TheoryDataRow()
|
||||
.WithSkip("Not Enabled");
|
||||
theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext);
|
||||
}
|
||||
else
|
||||
{
|
||||
theory = new ServiceTheoryDataRow(testMethod, disposalTracker, customizationContext);
|
||||
theory = new TheoryDataRow()
|
||||
.WithSkip("Not Enabled");
|
||||
}
|
||||
|
||||
theory
|
||||
|
@ -13,8 +13,8 @@
|
||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
|
||||
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.10.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" />
|
||||
<PackageReference Include="xunit.v3" Version="0.7.0-pre.19" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0-pre.54">
|
||||
<PackageReference Include="xunit.v3" Version="1.0.0" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
|
Loading…
x
Reference in New Issue
Block a user