diff options
Diffstat (limited to 'Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp')
| -rw-r--r-- | Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp b/Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp index 14e04cf..a86a111 100644 --- a/Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp +++ b/Swiften/Queries/Requests/UnitTest/GetPrivateStorageRequestTest.cpp @@ -72,7 +72,7 @@ class GetPrivateStorageRequestTest : public CppUnit::TestFixture  		}  	private: -		void handleResponse(boost::shared_ptr<Payload> p, const boost::optional<Error>& e) { +		void handleResponse(boost::shared_ptr<Payload> p, const boost::optional<ErrorPayload>& e) {  			if (e) {  				errors.push_back(*e);  			} @@ -99,7 +99,7 @@ class GetPrivateStorageRequestTest : public CppUnit::TestFixture  	private:  		IQRouter* router;  		DummyIQChannel* channel; -		std::vector< Error > errors; +		std::vector< ErrorPayload > errors;  		std::vector< boost::shared_ptr<Payload> > responses;  };  | 
 Swift