Control: tags -1 + fixed-upstream patch I have attached a patch that fixes the cause of this FTBFS -- a simple syntax error in dlna/dms/dms_unix_test.go. This has been fixed upstream for a while, so another fix could be to package the current version of this library.
Looking at this bug was part of my DD application process, where I was asked to find and fix an existing bug, and submit the fix as a patch to the BTS. That's why I haven't directly committed the fix to the salsa repo, even though I'm part of the Go Packaging Team. :) Mathias
From: Mathias Gibbens <[email protected]> Description: Fix a simple syntax error; already fixed upstream diff --git a/dlna/dms/dms_unix_test.go b/dlna/dms/dms_unix_test.go index a1be6fd..75803fb 100644 --- a/dlna/dms/dms_unix_test.go +++ b/dlna/dms/dms_unix_test.go @@ -15,7 +15,7 @@ func TestIsHiddenPath(t *testing.T) { for path, expected := range data { if actual, err := isHiddenPath(path); err != nil { t.Errorf("isHiddenPath(%v) returned unexpected error: %s", path, err) - ] else if expected != actual { + } else if expected != actual { t.Errorf("isHiddenPath(%v), expected %v, got %v", path, expected, actual) } }
signature.asc
Description: This is a digitally signed message part

