File tree 4 files changed +5
-5
lines changed
test/DatatablesParser.Tests
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
- mssql
11
11
- pgsql
12
12
mysql :
13
- image : mysql:5.7
13
+ image : mysql
14
14
container_name : dotnet-test-mysql
15
15
environment :
16
16
MYSQL_ROOT_PASSWORD : " Rea11ytrong_3"
Original file line number Diff line number Diff line change 11
11
<PackageReference Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" 2.0.0" />
12
12
<PackageReference Include =" Microsoft.EntityFrameworkCore.SqlServer" Version =" 2.0.0" />
13
13
<PackageReference Include =" Npgsql.EntityFrameworkCore.PostgreSQL" Version =" 2.0.0" />
14
- <PackageReference Include =" Pomelo.EntityFrameworkCore.MySql" Version =" 2.0.0-rtm-10058 " />
14
+ <PackageReference Include =" Pomelo.EntityFrameworkCore.MySql" Version =" 2.0.1 " />
15
15
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 15.3.0" />
16
16
<PackageReference Include =" xunit" Version =" 2.2.0" />
17
17
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.2.0" />
Original file line number Diff line number Diff line change @@ -107,10 +107,10 @@ public void TotalDisplayCustomFormatTest()
107
107
108
108
}
109
109
110
- [ Fact ]
110
+ [ Fact ]
111
111
public void TotalDisplayIndividualMutiTest ( )
112
112
{
113
- var context = TestHelper . GetInMemoryContext ( ) ;
113
+ var context = TestHelper . GetMysqlContext ( ) ;
114
114
var p = TestHelper . CreateParams ( ) ;
115
115
var displayLength = 1 ;
116
116
Original file line number Diff line number Diff line change 5
5
using System . Linq ;
6
6
using Microsoft . Extensions . DependencyInjection ;
7
7
using Microsoft . EntityFrameworkCore ;
8
- using Pomelo . EntityFrameworkCore . MySql ;
8
+ using Pomelo . EntityFrameworkCore ;
9
9
using Npgsql . EntityFrameworkCore . PostgreSQL ;
10
10
using Microsoft . Extensions . Logging ;
11
11
using Microsoft . EntityFrameworkCore . Diagnostics ;
You can’t perform that action at this time.
0 commit comments