Skip to content

Commit

Permalink
Revert "Fixing failing test from disabling oauth1."
Browse files Browse the repository at this point in the history
This reverts commit a4ef4db.
  • Loading branch information
stgates committed Aug 18, 2014
1 parent cbdd8c9 commit c9b9865
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Release/include/cpprest/http_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ class http_client_config
/// <returns>Shared pointer to OAuth 1.0 configuration.</returns>
const std::shared_ptr<oauth1::experimental::oauth1_config> oauth1() const
{
return m_oauth1;
// CodePlex #230
throw std::runtime_error("oauth1 is not implemented yet.");
//return m_oauth1;
}

/// <summary>
Expand Down

0 comments on commit c9b9865

Please sign in to comment.