Default mediaFolder should have Id = 0

This commit is contained in:
Deluan
2016-02-24 19:35:58 -05:00
parent 33c6535da9
commit 93f115d8e4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ func TestGetMusicFolders(t *testing.T) {
v := new(string)
err := xml.Unmarshal(w.Body.Bytes(), &v)
So(err, ShouldBeNil)
So(w.Body.String(), ShouldContainSubstring, `musicFolder id="1" name="iTunes Library"`)
So(w.Body.String(), ShouldContainSubstring, `musicFolder id="0" name="iTunes Library"`)
})
})
}