We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179ebe2 commit c5ea063Copy full SHA for c5ea063
src/NHibernate.Test/SqlCommandTest/SqlStringFixture.cs
@@ -434,7 +434,8 @@ public void ParameterPropertyShouldReturnNewInstances()
434
Assert.IsNull(parameters2[0].ParameterPosition);
435
436
// more simple version of the test
437
- Assert.That(Parameter.Placeholder, Is.Not.SameAs(Parameter.Placeholder));
+ var placeholder = Parameter.Placeholder;
438
+ Assert.That(placeholder, Is.Not.SameAs(Parameter.Placeholder));
439
}
440
441
[Test]
0 commit comments