Skip to content

Commit 3a33b5b

Browse files
authored
line 22
1 parent 9ab8192 commit 3a33b5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/System.Linq.Dynamic.Core.Tests/EntitiesTests.In.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void Entities_Where_In_And()
2121
// Arrange
2222
var expected = _context.Blogs.Include(b => b.Posts)
2323
.Where(b =>
24-
new[] { 1000, 1001, 1002 }.Contains(b.BlogId) && new[] { "Blog1", "Blog2" }.Contains(b.Name) && b.Name.Contains('o') && b.Name.Contains("g")
24+
new[] { 1000, 1001, 1002 }.Contains(b.BlogId) && new[] { "Blog1", "Blog2" }.Contains(b.Name) && b.Name.Contains('o'.ToString()) && b.Name.Contains("g")
2525
)
2626
.ToArray();
2727

0 commit comments

Comments
 (0)