Fixed AlbumId generation. Some code cleanup

This commit is contained in:
Deluan
2016-03-01 09:17:28 -05:00
parent 20650ed3fd
commit 375fd30045
8 changed files with 20 additions and 47 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ func TestGetLicense(t *testing.T) {
_, w := Get(AddParams("/rest/getLicense.view"), "TestGetLicense")
Convey("Subject: GetLicense Endpoint\n", t, func() {
Convey("Subject: GetLicense Endpoint", t, func() {
Convey("Status code should be 200", func() {
So(w.Code, ShouldEqual, 200)
})
+1 -1
View File
@@ -13,7 +13,7 @@ func TestGetMusicFolders(t *testing.T) {
_, w := Get(AddParams("/rest/getMusicFolders.view"), "TestGetMusicFolders")
Convey("Subject: GetMusicFolders Endpoint\n", t, func() {
Convey("Subject: GetMusicFolders Endpoint", t, func() {
Convey("Status code should be 200", func() {
So(w.Code, ShouldEqual, 200)
})
+1 -1
View File
@@ -13,7 +13,7 @@ func TestPing(t *testing.T) {
_, w := Get(AddParams("/rest/ping.view"), "TestPing")
Convey("Subject: Ping Endpoint\n", t, func() {
Convey("Subject: Ping Endpoint", t, func() {
Convey("Status code should be 200", func() {
So(w.Code, ShouldEqual, 200)
})