Skip to content

Commit 11a71cf

Browse files
committed
feat(tests): update SQL Server image tag to 2025-latest
- Replaced the SQL Server image tag from 2022-latest to 2025-latest in the test fixtures. - Ensures compatibility with the latest SQL Server features and improvements for functional tests.
1 parent a3eef15 commit 11a71cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/ES.FX.Shared.SqlServer.Tests/Fixtures/SqlServerContainerFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public sealed class SqlServerContainerFixture : IAsyncLifetime
66
{
77
public const string Registry = "mcr.microsoft.com";
88
public const string Image = "mssql/server";
9-
public const string Tag = "2022-latest";
9+
public const string Tag = "2025-latest";
1010
public MsSqlContainer? Container { get; private set; }
1111

1212
public async Task DisposeAsync()

tests/ES.FX.TransactionalOutbox.EntityFrameworkCore.SqlServer.Tests/OutboxDeliveryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public async Task InitializeAsync()
2020
{
2121
// Create a dedicated SQL Server container for this test class
2222
_msSqlContainer = new MsSqlBuilder()
23-
.WithImage("mcr.microsoft.com/mssql/server:2022-latest")
23+
.WithImage("mcr.microsoft.com/mssql/server:2025-latest")
2424
.Build();
2525

2626
await _msSqlContainer.StartAsync();

tests/ES.FX.TransactionalOutbox.EntityFrameworkCore.SqlServer.Tests/SimpleFunctionalTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public async Task InitializeAsync()
1515
{
1616
// Create a dedicated SQL Server container for this test
1717
_msSqlContainer = new MsSqlBuilder()
18-
.WithImage("mcr.microsoft.com/mssql/server:2022-latest")
18+
.WithImage("mcr.microsoft.com/mssql/server:2025-latest")
1919
.Build();
2020

2121
await _msSqlContainer.StartAsync();

0 commit comments

Comments
 (0)