File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Tests/Nest.Tests.Integration Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class HttpClientTests : IntegrationTests
99 [ Test ]
1010 public void IndexExistShouldNotThrowOn404 ( )
1111 {
12- var unknownIndexResult = this . _httpClientClient . IndexExists ( i => i . Index ( "i-am-running-out-of-clever-index-names" ) ) ;
12+ var unknownIndexResult = this . Client . IndexExists ( i => i . Index ( "i-am-running-out-of-clever-index-names" ) ) ;
1313 unknownIndexResult . Should ( ) . NotBeNull ( ) ;
1414 unknownIndexResult . IsValid . Should ( ) . BeTrue ( ) ;
1515
@@ -21,7 +21,7 @@ public void IndexExistShouldNotThrowOn404()
2121 [ Test ]
2222 public void EmptyResponseShouldNotThrowError ( )
2323 {
24- var result = this . _httpClientClient . Connection . HeadSync ( ElasticsearchConfiguration . CreateBaseUri ( 9200 ) ) ;
24+ var result = this . Client . Connection . HeadSync ( ElasticsearchConfiguration . CreateBaseUri ( 9200 ) ) ;
2525 result . Success . Should ( ) . BeTrue ( ) ;
2626 result . OriginalException . Should ( ) . BeNull ( ) ;
2727 }
Original file line number Diff line number Diff line change 9999 <Compile Include =" Cluster\GetSettingsTests.cs" />
100100 <Compile Include =" Cluster\PutSettingsTests.cs" />
101101 <Compile Include =" Connection\Failover\SniffTests.cs" />
102+ <Compile Include =" Connection\HttpClient\HttpClientTests.cs" />
102103 <Compile Include =" Connection\Thrift\ThiftBugReportTests.cs" />
103104 <Compile Include =" Core\Bulk\BulkTests.cs" />
104105 <Compile Include =" Core\Bulk\BulkUpdateTests.cs" />
You can’t perform that action at this time.
0 commit comments