Skip to content

Commit 3c8a1e7

Browse files
committed
ProjectionFixtures/Fixture.cs: Don't rely on source code EOL convention.
1 parent 3fcd8d4 commit 3c8a1e7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/NHibernate.Test/ProjectionFixtures/Fixture.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,9 @@ public void ErrorFromDBWillGiveTheActualSQLExecuted()
7474

7575
string pName = ((ISqlParameterFormatter) sessions.ConnectionProvider.Driver).GetParameterName(0);
7676
string expectedMessagePart0 =
77-
string.Format(
78-
@"could not execute query
79-
[ SELECT this_.Id as y0_, count(this_.Area) as y1_ FROM TreeNode this_ WHERE this_.Id = {0} ]",
80-
pName);
77+
string.Format("could not execute query" + Environment.NewLine +
78+
"[ SELECT this_.Id as y0_, count(this_.Area) as y1_ FROM TreeNode this_ WHERE this_.Id = {0} ]",
79+
pName);
8180
string expectedMessagePart1 =
8281
string.Format(
8382
@"[SQL: SELECT this_.Id as y0_, count(this_.Area) as y1_ FROM TreeNode this_ WHERE this_.Id = {0}]", pName);

0 commit comments

Comments
 (0)