Skip to content

Commit 6756a51

Browse files
committed
Fix NUnit2050 for Assume
1 parent cdeac11 commit 6756a51

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
@@ -232,7 +232,7 @@ private void Save<TArea>(TArea area) where TArea : Area
232232
[Test]
233233
public void NativeUpdateQueryWithoutResults()
234234
{
235-
Assume.That(Dialect, Is.InstanceOf<MsSql2000Dialect>(), "This does not apply to {0}", Dialect);
235+
Assume.That(Dialect, Is.InstanceOf<MsSql2000Dialect>(), $"This does not apply to {Dialect}");
236236
Assume.That(WithQueryCache, Is.False, "This test does not use a cacheable query.");
237237
using (ISession session = OpenSession())
238238
{

0 commit comments

Comments
 (0)