File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/NHibernate.Test/ProjectionFixtures Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments