Skip to content

Commit

Permalink
Add missing ":"
Browse files Browse the repository at this point in the history
  • Loading branch information
andy840119 committed Jul 21, 2023
1 parent 487ad92 commit 4017eb7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void TestCheckDurationTooShort(string startTimeTag, string endTimeTag)
var referencedLyric = new Lyric
{
Text = "カラオケ",
TimeTags = TestCaseTagHelper.ParseTimeTags(new[] { $"{startTimeTag}0", $"{endTimeTag}{MIN_DURATION - 1}" }),
TimeTags = TestCaseTagHelper.ParseTimeTags(new[] { $"{startTimeTag}:0", $"{endTimeTag}:{MIN_DURATION - 1}" }),
};
var note = new Note
{
Expand All @@ -120,7 +120,7 @@ public void TestCheckDurationTooLong(string startTimeTag, string endTimeTag)
var referencedLyric = new Lyric
{
Text = "カラオケ",
TimeTags = TestCaseTagHelper.ParseTimeTags(new[] { $"{startTimeTag}0", $"{endTimeTag}{MAX_DURATION + 1}" }),
TimeTags = TestCaseTagHelper.ParseTimeTags(new[] { $"{startTimeTag}:0", $"{endTimeTag}:{MAX_DURATION + 1}" }),
};
var note = new Note
{
Expand Down

0 comments on commit 4017eb7

Please sign in to comment.