Skip to content

Commit

Permalink
test(Translators): change test to cover to string translator
Browse files Browse the repository at this point in the history
  • Loading branch information
laskoviymishka authored and anpete committed Dec 12, 2016
1 parent 13f3a76 commit c4b2fb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6329,7 +6329,7 @@ public override void Query_expression_with_to_string_and_contains()
Assert.Equal(
@"SELECT [o].[CustomerID]
FROM [Orders] AS [o]
WHERE [o].[OrderDate] IS NOT NULL AND (CHARINDEX(N'10', CONVERT(VARCHAR(MAX), [o].[EmployeeID])) > 0)",
WHERE [o].[OrderDate] IS NOT NULL AND (CHARINDEX(N'10', CONVERT(VARCHAR(10), [o].[EmployeeID])) > 0)",
Sql);
}

Expand Down

0 comments on commit c4b2fb1

Please sign in to comment.