Skip to content

Commit

Permalink
Fix ignoring test
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzik committed Jun 5, 2024
1 parent 578bf11 commit 0992437
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/NHibernate.Test/NHSpecificTest/NH1280/NH1280Fixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,8 @@ public void NestedSubqueriesShouldStayInOrder()
[Test]
public void SubstringShouldUseAllParameters()
{
// https://technet.microsoft.com/en-us/library/ms174077(v=sql.110).aspx
if (Dialect is MsSqlCeDialect)
Assert.Ignore("Sql function left not supported by MS SQL CE");
if (!Dialect.Functions.ContainsKey("left"))
Assert.Ignore($"Sql function left not is supported by {Dialect}");

using (ISession s = OpenSession())
using (ITransaction tx = s.BeginTransaction())
Expand Down

0 comments on commit 0992437

Please sign in to comment.