This commit is contained in:
Javier Feliz 2025-02-13 23:57:03 -05:00
parent b6b6db6457
commit 69f8a58f37

@ -1,7 +1,6 @@
package validation package validation
import ( import (
"log"
"testing" "testing"
) )
@ -42,7 +41,6 @@ func TestSchemeHandling(t *testing.T) {
func TestSupportedMusicUrls(t *testing.T) { func TestSupportedMusicUrls(t *testing.T) {
// Test actual music url // Test actual music url
for _, url := range musicHosts { for _, url := range musicHosts {
log.Println(url)
is, _ := IsMusicUrl(url) is, _ := IsMusicUrl(url)
if !is { if !is {