Skip to content

Commit e6662d6

Browse files
committed
Fix spacing
1 parent 9e1f930 commit e6662d6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ public async Task TestQueryCachingWithThenFetchManyAsync()
129129
.Query<Person>()
130130
.FetchMany(p => p.Children)
131131
.ThenFetchMany(ch => ch.Pets)
132-
.FetchMany(p => p.Cars) as IQueryable<Person>
133-
;
132+
.FetchMany(p => p.Cars) as IQueryable<Person>;
134133

135134
query = query.WithOptions(opt =>
136135
opt.SetCacheable(true)

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ public void TestQueryCachingWithThenFetchMany()
118118
.Query<Person>()
119119
.FetchMany(p => p.Children)
120120
.ThenFetchMany(ch => ch.Pets)
121-
.FetchMany(p => p.Cars) as IQueryable<Person>
122-
;
121+
.FetchMany(p => p.Cars) as IQueryable<Person>;
123122

124123
query = query.WithOptions(opt =>
125124
opt.SetCacheable(true)

0 commit comments

Comments
 (0)