Skip to content

Commit 3a030b2

Browse files
committed
Fix NUnit2050 for Assume
1 parent 1e9fb96 commit 3a030b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate.Test/NHSpecificTest/NH1612/NativeSqlCollectionLoaderFixture.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public void NativeUpdateQueryWithoutResults()
247247
[Test]
248248
public void NativeScalarQueryWithoutResults()
249249
{
250-
Assume.That(Dialect, Is.InstanceOf<MsSql2000Dialect>(), "This does not apply to {0}", Dialect);
250+
Assume.That(Dialect, Is.InstanceOf<MsSql2000Dialect>(), $"This does not apply to {Dialect}");
251251
Assume.That(WithQueryCache, Is.False, "This test does not use a cacheable query.");
252252
using (ISession session = OpenSession())
253253
{

0 commit comments

Comments
 (0)