Skip to content

Commit

Permalink
fix test code typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzhenqiong committed Dec 3, 2020
1 parent 7ca2b7f commit 869f228
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sky.Data.Csv.Test/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public override List<String> Serialize(Student data)

class Program
{
static void TestGenericWriter()
static void TestGenericReader()
{
var dataResolver = new StudentResolver();
var csvFiles = new[] {
Expand All @@ -64,7 +64,7 @@ static void TestGenericWriter()
Console.WriteLine("======================");
}
}
static void TestSpecificWriter()
static void TestSpecificReader()
{
var csvFiles = new[] {
@"..\..\TestData.Csv\csv-ms-dos.csv",
Expand Down Expand Up @@ -98,8 +98,8 @@ static void TestSpecificWriter()

static void Main(string[] args)
{
TestSpecificWriter();
TestGenericWriter();
TestSpecificReader();
TestGenericReader();
}
}
}

0 comments on commit 869f228

Please sign in to comment.