Skip to content

Commit a27af4c

Browse files
committed
Minor: variable renaming.
1 parent 821dc27 commit a27af4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AutoMapper.Extensions.ExpressionMapping.UnitTests/XpressionMapperTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,10 +423,10 @@ public void Map__select_method_projecting_to_model_type()
423423

424424
//Act
425425
Expression<Func<User, IEnumerable<Thing>>> selectionMapped = mapper.MapExpression<Expression<Func<User, IEnumerable<Thing>>>>(selection);
426-
List<Thing> bars = Users.SelectMany(selectionMapped).ToList();
426+
List<Thing> things = Users.SelectMany(selectionMapped).ToList();
427427

428428
//Assert
429-
Assert.True(bars.Count == 2);
429+
Assert.True(things.Count == 2);
430430
}
431431

432432
[Fact]

0 commit comments

Comments
 (0)