Skip to content

Commit 9809339

Browse files
committed
Fix tests
1 parent 15627b7 commit 9809339

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/NHibernate.Test/Async/NHSpecificTest/NH3565/FixtureByCode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ where NHibernate.Linq.SqlMethods.Like(e.Name, "Bob")
7373
select e;
7474

7575
Assert.That(await (result.ToListAsync()), Has.Count.EqualTo(1));
76-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
76+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
7777
}
7878
}
7979

@@ -89,7 +89,7 @@ where e.Name.Contains("Bob")
8989
select e;
9090

9191
Assert.That(await (result.ToListAsync()), Has.Count.EqualTo(1));
92-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
92+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
9393
}
9494
}
9595

@@ -105,7 +105,7 @@ where e.Name.StartsWith("Bob")
105105
select e;
106106

107107
Assert.That(await (result.ToListAsync()), Has.Count.EqualTo(1));
108-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
108+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
109109
}
110110
}
111111
}

src/NHibernate.Test/NHSpecificTest/NH3565/FixtureByCode.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ where NHibernate.Linq.SqlMethods.Like(e.Name, "Bob")
6161
select e;
6262

6363
Assert.That(result.ToList(), Has.Count.EqualTo(1));
64-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
64+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
6565
}
6666
}
6767

@@ -77,7 +77,7 @@ where e.Name.Contains("Bob")
7777
select e;
7878

7979
Assert.That(result.ToList(), Has.Count.EqualTo(1));
80-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
80+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
8181
}
8282
}
8383

@@ -93,7 +93,7 @@ where e.Name.StartsWith("Bob")
9393
select e;
9494

9595
Assert.That(result.ToList(), Has.Count.EqualTo(1));
96-
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString (10"));
96+
Assert.That(logSpy.GetWholeLog(), Does.Contain("Type: AnsiString"));
9797
}
9898
}
9999
}

0 commit comments

Comments
 (0)