1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-20 00:47:16 -05:00

Follow Builder Pattern

This commit is contained in:
Justin Baur
2025-01-29 14:06:38 -05:00
parent dd8ede6273
commit ea215f154b

View File

@ -45,7 +45,7 @@ public class DatabaseDataAttribute : DataAttribute
.WithSkip("Not Enabled"); .WithSkip("Not Enabled");
} }
theory theory = theory
.WithTrait("DbType", customizationContext.Database.Type.ToString()) .WithTrait("DbType", customizationContext.Database.Type.ToString())
.WithTestDisplayName($"{testMethod.Name}[{customizationContext.Database.Name ?? customizationContext.Database.Type.ToString()}]"); .WithTestDisplayName($"{testMethod.Name}[{customizationContext.Database.Name ?? customizationContext.Database.Type.ToString()}]");