From d856e75e76176de6aea080893843a159770c066a Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Tue, 5 Nov 2013 23:31:19 +0100 Subject: [PATCH] make test playlists working for XUnit update --- PocketSharp.Tests/DefaultAccount.playlist | 2 +- PocketSharp.Tests/StressAccount.playlist | 2 +- PocketSharp/PocketClient.cs | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/PocketSharp.Tests/DefaultAccount.playlist b/PocketSharp.Tests/DefaultAccount.playlist index 90ba01b..ce94283 100644 --- a/PocketSharp.Tests/DefaultAccount.playlist +++ b/PocketSharp.Tests/DefaultAccount.playlist @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/PocketSharp.Tests/StressAccount.playlist b/PocketSharp.Tests/StressAccount.playlist index fd7a074..df4600c 100644 --- a/PocketSharp.Tests/StressAccount.playlist +++ b/PocketSharp.Tests/StressAccount.playlist @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/PocketSharp/PocketClient.cs b/PocketSharp/PocketClient.cs index 87b825e..3ddbf0a 100644 --- a/PocketSharp/PocketClient.cs +++ b/PocketSharp/PocketClient.cs @@ -220,8 +220,7 @@ namespace PocketSharp /// internal async Task Send(ActionParameter actionParameter) { - bool response = await Send(new List() { actionParameter }); - return response; + return await Send(new List() { actionParameter }); }