Passing on serialize argument to Connection's ctor, wasn't passing on before. Breaks tests.

This commit is contained in:
Devesh Khandelwal
2016-03-08 00:28:16 +05:30
parent d5a028c7d1
commit b62bcfaec9
+1 -1
View File
@@ -133,7 +133,7 @@ namespace Octokit
BaseAddress = baseAddress;
_authenticator = new Authenticator(credentialStore);
_httpClient = httpClient;
_jsonPipeline = new JsonHttpPipeline();
_jsonPipeline = new JsonHttpPipeline(serializer);
}
/// <summary>