Skip to content

Commit 56e4ebe

Browse files
Fix test
1 parent fa61701 commit 56e4ebe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/NHibernate.Test/Async/CacheTest/QueryCacheFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public async Task QueryCacheWithAliasToBeanTransformerAsync()
108108
{
109109
using (var s = OpenSession())
110110
{
111-
const string query = "select s.id_ as Id from Simple as s";
111+
const string query = "select s.id_ as Id from Simple as s;";
112112
var result1 = await (s
113113
.CreateSQLQuery(query)
114114
.SetCacheable(true)

src/NHibernate.Test/CacheTest/QueryCacheFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void QueryCacheWithAliasToBeanTransformer()
9797
{
9898
using (var s = OpenSession())
9999
{
100-
const string query = "select s.id_ as Id from Simple as s";
100+
const string query = "select s.id_ as Id from Simple as s;";
101101
var result1 = s
102102
.CreateSQLQuery(query)
103103
.SetCacheable(true)

0 commit comments

Comments
 (0)