Skip to content

Commit

Permalink
Fix test baseline in 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Apr 4, 2020
1 parent bdb75c2 commit ea07dec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void FreeText_multiple_predicates()
AssertSql(
@"SELECT TOP(1) [e].[EmployeeID], [e].[City], [e].[Country], [e].[FirstName], [e].[ReportsTo], [e].[Title]
FROM [Employees] AS [e]
WHERE FREETEXT([e].[City], N'London')) AND (FREETEXT([e].[Title], N'Manager', LANGUAGE 1033)");
WHERE FREETEXT([e].[City], N'London') AND FREETEXT([e].[Title], N'Manager', LANGUAGE 1033)");
}
}

Expand Down

0 comments on commit ea07dec

Please sign in to comment.