Skip to content

Commit 56e9d46

Browse files
committed
Erry'body on Rx 2.2.5
1 parent 089ebcf commit 56e9d46

4 files changed

+19
-7
lines changed

Refit-Tests/Refit-Tests-Android.csproj

+12
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@
5050
<Reference Include="Newtonsoft.Json">
5151
<HintPath>..\packages\Newtonsoft.Json.6.0.3\lib\portable-net40+sl4+wp7+win8\Newtonsoft.Json.dll</HintPath>
5252
</Reference>
53+
<Reference Include="System.Reactive.Core">
54+
<HintPath>..\packages\Rx-Core.2.2.5\lib\portable-net45+winrt45+wp8+wpa81\System.Reactive.Core.dll</HintPath>
55+
</Reference>
56+
<Reference Include="System.Reactive.Interfaces">
57+
<HintPath>..\packages\Rx-Interfaces.2.2.5\lib\portable-net45+winrt45+wp8+wpa81\System.Reactive.Interfaces.dll</HintPath>
58+
</Reference>
59+
<Reference Include="System.Reactive.Linq">
60+
<HintPath>..\packages\Rx-Linq.2.2.5\lib\portable-net45+winrt45+wp8+wpa81\System.Reactive.Linq.dll</HintPath>
61+
</Reference>
62+
<Reference Include="System.Reactive.PlatformServices">
63+
<HintPath>..\packages\Rx-PlatformServices.2.2.5\lib\portable-net45+winrt45+wp8+wpa81\System.Reactive.PlatformServices.dll</HintPath>
64+
</Reference>
5365
</ItemGroup>
5466
<ItemGroup>
5567
<Compile Include="DeliminatorSeparatedPropertyNamesContractResolver.cs" />

Refit-Tests/Refit-Tests-Net45.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@
5454
</Reference>
5555
<Reference Include="System.Net.Http.WebRequest" />
5656
<Reference Include="System.Reactive.Core">
57-
<HintPath>..\packages\Rx-Core.2.2.4\lib\net45\System.Reactive.Core.dll</HintPath>
57+
<HintPath>..\packages\Rx-Core.2.2.5\lib\net45\System.Reactive.Core.dll</HintPath>
5858
</Reference>
5959
<Reference Include="System.Reactive.Interfaces">
60-
<HintPath>..\packages\Rx-Interfaces.2.2.4\lib\net45\System.Reactive.Interfaces.dll</HintPath>
60+
<HintPath>..\packages\Rx-Interfaces.2.2.5\lib\net45\System.Reactive.Interfaces.dll</HintPath>
6161
</Reference>
6262
<Reference Include="System.Reactive.Linq">
63-
<HintPath>..\packages\Rx-Linq.2.2.4\lib\net45\System.Reactive.Linq.dll</HintPath>
63+
<HintPath>..\packages\Rx-Linq.2.2.5\lib\net45\System.Reactive.Linq.dll</HintPath>
6464
</Reference>
6565
<Reference Include="System.Reactive.PlatformServices">
66-
<HintPath>..\packages\Rx-PlatformServices.2.2.4\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
66+
<HintPath>..\packages\Rx-PlatformServices.2.2.5\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
6767
</Reference>
6868
<Reference Include="System.Xml.Linq" />
6969
<Reference Include="System.Data.DataSetExtensions" />
@@ -105,4 +105,4 @@
105105
<Target Name="AfterBuild">
106106
</Target>
107107
-->
108-
</Project>
108+
</Project>

Refit-Tests/RestService.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public async Task HitTheGitHubOrgMembersApi()
111111

112112
var result = await fixture.GetOrgMembers("github");
113113

114-
Assert.Greater(result.Count, 0);
114+
Assert.IsTrue(result.Count > 0);
115115
Assert.IsTrue(result.Any(member => member.Type == "User"));
116116
}
117117

@@ -124,7 +124,7 @@ public async Task HitTheGitHubUserSearchApi()
124124

125125
var result = await fixture.FindUsers("tom repos:>42 followers:>1000");
126126

127-
Assert.Greater(result.TotalCount, 0);
127+
Assert.IsTrue(result.TotalCount > 0);
128128
Assert.IsTrue(result.Items.Any(member => member.Type == "User"));
129129
}
130130

File renamed without changes.

0 commit comments

Comments
 (0)