Skip to content

Commit 1f0788e

Browse files
minor unit test change
1 parent 287de60 commit 1f0788e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

TestWasm/Pages/Home.razor

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@
138138
IEnumerable<T> indexDbResults, IEnumerable<T> correctResults) where T : class
139139
{
140140
// Remove any nulls from both collections
141-
indexDbResults = indexDbResults.Where(x => x != null);
142-
correctResults = correctResults.Where(x => x != null);
141+
indexDbResults = indexDbResults.Where(x => x != null);
142+
correctResults = correctResults.Where(x => x != null);
143143

144144
var result = TestValidator.ValidateLists(correctResults, indexDbResults);
145145

@@ -262,9 +262,6 @@
262262

263263
allPeople = await personQuery.ToListAsync();
264264

265-
266-
267-
List<Person> people = await personQuery.ToListAsync();
268265
StateHasChanged();
269266

270267
//await manager.ClearTableAsync<Person>();

0 commit comments

Comments
 (0)