Merge pull request #413 from Scrxtchy/soundcloud-test-update

Fix SoundCloud test artist account name
This commit is contained in:
Tobias Groza
2020-10-16 08:05:44 +02:00
committed by GitHub
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