Fix SoundCloud test artist account name

This commit is contained in:
Scratch 2020-10-16 13:45:05 +11:00
parent acb04eb351
commit 538f5d3973
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public class SoundcloudChannelExtractorTest {
@Test
public void testName() {
assertEquals("LIL UZI VERT", extractor.getName());
assertEquals("Lil Uzi Vert", extractor.getName());
}
@Test

View File

@ -63,7 +63,7 @@ public class SoundcloudStreamExtractorDefaultTest {
@Test
public void testGetUploaderName() throws ParsingException {
assertEquals("LIL UZI VERT", extractor.getUploaderName());
assertEquals("Lil Uzi Vert", extractor.getUploaderName());
}
@Test