Skip to content

Commit

Permalink
Merge pull request #58 from andy840119/clean-up-code
Browse files Browse the repository at this point in the history
Clean up code.
  • Loading branch information
andy840119 authored Dec 9, 2023
2 parents 9e5324c + f02cc07 commit 32a1fd2
Show file tree
Hide file tree
Showing 12 changed files with 129 additions and 124 deletions.
4 changes: 2 additions & 2 deletions LrcParser.Tests/Parser/Lrc/Lines/LrcLyricParserTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void TestDecode(string lyric, string text, string[] timeTags)
var expected = new LrcLyric
{
Text = text,
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags)
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags),
};
var actual = Decode(lyric);

Expand All @@ -51,7 +51,7 @@ public void TestEncode(string text, string[] timeTags, string expected)
var lyric = new LrcLyric
{
Text = text,
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags)
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags),
};
var actual = Encode(lyric);

Expand Down
4 changes: 2 additions & 2 deletions LrcParser.Tests/Parser/Lrc/Lines/LrcRubyParserTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void TestDecode(string rubyTag, string parent, string ruby, string[] time
Ruby = ruby,
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags),
StartTime = startTime,
EndTime = endTime
EndTime = endTime,
};
var actual = Decode(rubyTag);

Expand All @@ -59,7 +59,7 @@ public void TestEncode(string parent, string ruby, string[] timeTags, int? start
Ruby = ruby,
TimeTags = TestCaseTagHelper.ParseTimeTags(timeTags),
StartTime = startTime,
EndTime = endTime
EndTime = endTime,
};
var actual = Encode(rubyTag);

Expand Down
Loading

0 comments on commit 32a1fd2

Please sign in to comment.