Skip to content

Commit

Permalink
Add missing trailing comma.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Dec 9, 2023
1 parent 9e5324c commit 20ad1a6
Show file tree
Hide file tree
Showing 8 changed files with 121 additions and 121 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 20ad1a6

Please sign in to comment.