Skip to content

Commit 7e3b9fc

Browse files
committed
Debug method removed
1 parent b0c5aa2 commit 7e3b9fc

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

src/NHibernate.Test/Async/SecondLevelCacheTest/InvalidationTests.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,7 @@ public async Task InvalidatesEntitiesAsync()
100100
Assert.That(invalidations.All(x => x.Count == 1 && x.First() == "Item"), Is.True);
101101

102102
}
103-
104-
private bool IsRight(HashSet<string> x)
105-
{
106-
return x.Count == 1 && x.First() == "Item";
107-
}
108-
103+
109104
public async Task CleanUpAsync(CancellationToken cancellationToken = default(CancellationToken))
110105
{
111106
using (ISession s = OpenSession())
@@ -115,7 +110,7 @@ private bool IsRight(HashSet<string> x)
115110
await (tx.CommitAsync(cancellationToken));
116111
}
117112
}
118-
113+
119114
public void CleanUp()
120115
{
121116
using (ISession s = OpenSession())

src/NHibernate.Test/SecondLevelCacheTest/InvalidationTests.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,7 @@ public void InvalidatesEntities()
8888
Assert.That(invalidations.All(x => x.Count == 1 && x.First() == "Item"), Is.True);
8989

9090
}
91-
92-
private bool IsRight(HashSet<string> x)
93-
{
94-
return x.Count == 1 && x.First() == "Item";
95-
}
96-
91+
9792
public void CleanUp()
9893
{
9994
using (ISession s = OpenSession())

0 commit comments

Comments
 (0)