Skip to content

Commit 2a98316

Browse files
hazzikfredericDelaporte
authored andcommitted
Ignore StringFormatWithTrim for SapSqlAnywhere
1 parent 8b99214 commit 2a98316

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/NHibernate.Test/Async/Linq/LinqQuerySamples.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,6 +1389,9 @@ public void ReplaceFunctionWithNullArgumentAsync()
13891389
[Test(Description = "GH-2860")]
13901390
public async Task StringFormatWithTrimAsync()
13911391
{
1392+
if (TestDialect.HasBrokenTypeInferenceOnSelectedParameters)
1393+
Assert.Ignore("Current dialect does not support this test");
1394+
13921395
var q =
13931396
from e in db.Employees
13941397
select new {Name = $"{e.FirstName} {e.LastName}".Trim(), Phone = e.Address.PhoneNumber};

src/NHibernate.Test/Linq/LinqQuerySamples.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,6 +1974,9 @@ public void ReplaceFunctionWithNullArgument()
19741974
[Test(Description = "GH-2860")]
19751975
public void StringFormatWithTrim()
19761976
{
1977+
if (TestDialect.HasBrokenTypeInferenceOnSelectedParameters)
1978+
Assert.Ignore("Current dialect does not support this test");
1979+
19771980
var q =
19781981
from e in db.Employees
19791982
select new {Name = $"{e.FirstName} {e.LastName}".Trim(), Phone = e.Address.PhoneNumber};

0 commit comments

Comments
 (0)