Remove redundant test

This commit is contained in:
Michał Sikora 2024-08-28 16:15:44 +02:00 committed by Ian Baker
parent 24bbe6d921
commit cd47e2a134

View File

@ -262,16 +262,6 @@ public final class WebvttCueParserTest {
.withName("Esme");
}
@Test
public void parseVoiceSpanWithClasses() throws Exception {
Spanned text = parseCueText("<v.first.loud>Text with a single voice span");
assertThat(text.toString()).isEqualTo("Text with a single voice span");
assertThat(text)
.hasVoiceSpanBetween(0, "Text with a single voice span".length())
.withName("");
}
@Test
public void ignoreVoiceSpanClasses() throws Exception {
Spanned text = parseCueText("<v.first.loud Esme>Text with a single voice span");