Skip to content

Commit

Permalink
Remove (now optional) ServerVersion setting from test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrainger committed Jan 4, 2024
1 parent 2623f93 commit f133452
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ namespace Aspire.Pomelo.EntityFrameworkCore.MySql.Tests;
public class ConformanceTests_NoPooling_TypeSpecificConfig : ConformanceTests_NoPooling
{
protected override void PopulateConfiguration(ConfigurationManager configuration, string? key = null)
=> configuration.AddInMemoryCollection(new KeyValuePair<string, string?>[2]
=> configuration.AddInMemoryCollection(new KeyValuePair<string, string?>[1]
{
new($"Aspire:Pomelo:EntityFrameworkCore:MySql:{typeof(TestDbContext).Name}:ConnectionString", ConnectionString),
new($"Aspire:Pomelo:EntityFrameworkCore:MySql:{typeof(TestDbContext).Name}:ServerVersion", "8.2.0-mysql")
new($"Aspire:Pomelo:EntityFrameworkCore:MySql:{typeof(TestDbContext).Name}:ConnectionString", ConnectionString)
});
}

0 comments on commit f133452

Please sign in to comment.