Skip to content

Commit

Permalink
Fix the test case.
Browse files Browse the repository at this point in the history
Combine notes should combine the ruby text also.
  • Loading branch information
andy840119 committed Jul 31, 2022
1 parent 58086c3 commit d6dca60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void TestCombine()

var combinedNote = actualNotes.First();
Assert.AreEqual("カラ", combinedNote.Text);
Assert.AreEqual(null, combinedNote.RubyText);
Assert.AreEqual("から", combinedNote.RubyText);
Assert.AreEqual(1000, combinedNote.StartTime);
Assert.AreEqual(1000, combinedNote.Duration);
});
Expand Down

0 comments on commit d6dca60

Please sign in to comment.