Add unit test for ObservableMiscellaneousClient

Fix observable's constructor (obsoleting old constructor) to make it consistent with the other API clients
This commit is contained in:
Ryan Gribble
2016-04-03 22:20:02 +10:00
parent a489092f62
commit 09ebe007b7
4 changed files with 155 additions and 1 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
Authorization = new ObservableAuthorizationsClient(gitHubClient);
Activity = new ObservableActivitiesClient(gitHubClient);
Issue = new ObservableIssuesClient(gitHubClient);
Miscellaneous = new ObservableMiscellaneousClient(gitHubClient.Miscellaneous);
Miscellaneous = new ObservableMiscellaneousClient(gitHubClient);
Notification = new ObservableNotificationsClient(gitHubClient);
Oauth = new ObservableOauthClient(gitHubClient);
Organization = new ObservableOrganizationsClient(gitHubClient);