File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Async/NHSpecificTest/NH2302 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public async Task StringHugeLengthAsync()
53
53
if ( Sfi . ConnectionProvider . Driver is OdbcDriver || Dialect is MsSqlCeDialect )
54
54
Assert . Ignore ( "NH-4065, not fixed for Odbc and MsSqlCe" ) ;
55
55
56
- if ( Dialect . GetTypeName ( new StringSqlType ( 10000 ) ) != Dialect . GetLongestTypeName ( DbType . String ) )
56
+ if ( Dialect . GetTypeName ( SqlTypeFactory . GetString ( 10000 ) ) != Dialect . GetLongestTypeName ( DbType . String ) )
57
57
Assert . Ignore ( "Current dialect does support limited strings of 10 000 characters" ) ;
58
58
59
59
int id ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public void StringHugeLength()
42
42
if ( Sfi . ConnectionProvider . Driver is OdbcDriver || Dialect is MsSqlCeDialect )
43
43
Assert . Ignore ( "NH-4065, not fixed for Odbc and MsSqlCe" ) ;
44
44
45
- if ( Dialect . GetTypeName ( new StringSqlType ( 10000 ) ) != Dialect . GetLongestTypeName ( DbType . String ) )
45
+ if ( Dialect . GetTypeName ( SqlTypeFactory . GetString ( 10000 ) ) != Dialect . GetLongestTypeName ( DbType . String ) )
46
46
Assert . Ignore ( "Current dialect does support limited strings of 10 000 characters" ) ;
47
47
48
48
int id ;
You can’t perform that action at this time.
0 commit comments