From 4a7a3c11b669d4981fbba8da71de7555ba2fe050 Mon Sep 17 00:00:00 2001 From: Rikki Tooley Date: Mon, 8 Dec 2014 11:34:33 +0000 Subject: [PATCH] Fix the test I broke in GetAlbumTopTagsCommandTest --- .../Commands/AlbumApi/GetAlbumTopTagsCommandTest.cs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/IF.Lastfm.Core.Tests/Api/Commands/AlbumApi/GetAlbumTopTagsCommandTest.cs b/src/IF.Lastfm.Core.Tests/Api/Commands/AlbumApi/GetAlbumTopTagsCommandTest.cs index 9fd4498..8ad6ec5 100644 --- a/src/IF.Lastfm.Core.Tests/Api/Commands/AlbumApi/GetAlbumTopTagsCommandTest.cs +++ b/src/IF.Lastfm.Core.Tests/Api/Commands/AlbumApi/GetAlbumTopTagsCommandTest.cs @@ -2,16 +2,12 @@ using IF.Lastfm.Core.Api.Enums; using IF.Lastfm.Core.Tests.Resources; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IF.Lastfm.Core.Tests.Api.Commands.AlbumApi { - - [TestClass] public class GetAlbumTopTagsCommandTest : CommandTestsBase { @@ -31,10 +27,9 @@ public GetAlbumTopTagsCommandTest() [TestMethod] public void Constructor() { - Assert.AreEqual(_command.Method, "album.gettoptags"); + Assert.AreEqual(_command.Method, "album.getTopTags"); Assert.AreEqual(_command.Parameters["album"], "Believe"); Assert.AreEqual(_command.Parameters["artist"], "Cher"); - } [TestMethod] @@ -49,7 +44,6 @@ public async Task HandleSuccessResponse() } - [TestMethod] public async Task HandleEmptyResponse() { @@ -75,6 +69,4 @@ public async Task HandleErrorResponse() Assert.IsTrue(!parsed.Content.Any()); } } - - }