From 6999185c96c5f5e4181b27525d0821d1277d6fc2 Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Thu, 3 Apr 2014 11:50:12 +0200 Subject: [PATCH] remove unnecessary action in tests --- PocketSharp.Tests/ModifyTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PocketSharp.Tests/ModifyTests.cs b/PocketSharp.Tests/ModifyTests.cs index e43e407..ee235fb 100644 --- a/PocketSharp.Tests/ModifyTests.cs +++ b/PocketSharp.Tests/ModifyTests.cs @@ -72,8 +72,7 @@ namespace PocketSharp.Tests { new PocketAction() { Action = "favorite", ID = item.ID }, new PocketAction() { Action = "tags_add", ID = item.ID, Tags = new string[] { "new_tag", "another_tag" } }, - new PocketAction() { Action = "archive", ID = item.ID }, - new PocketAction() { Action = "tag_rename", ID = item.ID, OldTag = "social", NewTag = "not_social" } + new PocketAction() { Action = "archive", ID = item.ID } }); Assert.True(success); @@ -84,7 +83,6 @@ namespace PocketSharp.Tests Assert.True(item.IsArchive); Assert.NotNull(item.Tags.Single(tag => tag.Name == "new_tag")); Assert.NotNull(item.Tags.Single(tag => tag.Name == "another_tag")); - Assert.NotNull(item.Tags.Single(tag => tag.Name == "not_social")); }