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()
74
74
75
75
string pName = ( ( ISqlParameterFormatter ) sessions . ConnectionProvider . Driver ) . GetParameterName ( 0 ) ;
76
76
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 ) ;
81
80
string expectedMessagePart1 =
82
81
string . Format (
83
82
@"[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