Skip to content

Commit

Permalink
Fix one more unit test re MySQL text/longtext length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
jas88 committed Aug 15, 2023
1 parent dc428bb commit b17b53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/FAnsiTests/TypeTranslation/TypeTranslaterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void Test_CSharpToDbType_StringMax(DatabaseType type,string expectedType)
[TestCase(DatabaseType.MicrosoftSQLServer, "nvarchar(max)",true)]
[TestCase(DatabaseType.MicrosoftSQLServer, "text",false)]
[TestCase(DatabaseType.MicrosoftSQLServer, "ntext",true)]
[TestCase(DatabaseType.MySql, "text",false)]
[TestCase(DatabaseType.MySql, "longtext",false)]
[TestCase(DatabaseType.Oracle, "CLOB", false)]
[TestCase(DatabaseType.PostgreSql, "text", false)]
public void Test_GetLengthIfString_VarcharMaxCols(DatabaseType type, string datatype, bool expectUnicode)
Expand Down

0 comments on commit b17b53e

Please sign in to comment.