Skip to content

Commit abd69c1

Browse files
committed
Minor test update for full-stack SQL tests.
1 parent 05cdfe5 commit abd69c1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/Microsoft.AspNet.SessionState.SqlSessionStateProviderAsync.Test/SqlSessionStateAsyncProviderTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,7 @@ public async void SetAndReleaseItemExclusiveAsync_Should_Release_Exclsive_Sessio
605605
//
606606
// Requires existing database & connection string.
607607
// Disabled by default, but you can enable if you've got a DB ready for testing against.
608+
// Remember, the provider only creates tables. You must have a database already provisioned.
608609
// When using Azure SQL, 'InMemory' is only supported by the 'Premium' DTU or 'Business Critical' vCore tiers.
609610
//
610611
//
@@ -762,7 +763,7 @@ Created datetime NOT NULL DEFAULT GETUTCDATE(),
762763
Assert.NotNull(ex);
763764
Assert.IsType<HttpException>(ex);
764765
Assert.NotNull(ex.InnerException);
765-
Assert.Equal($"The table '{expectedTableName}' is compatible with current repositories. Use the 'SqlServer' repositoryType instead.", ex.InnerException.Message);
766+
Assert.Equal($"The table '{expectedTableName}' is compatible with a more recent repository type. Use the 'SqlServer' repository type instead.", ex.InnerException.Message);
766767
}
767768
}
768769
finally

0 commit comments

Comments
 (0)