File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Weaviate.Client.Tests/Integration Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ var result = await operation.CancelSync(
366366Get cluster nodes and their shards to determine replication targets:
367367
368368``` csharp
369- var nodes = await client .Cluster .Nodes .NodesVerbose (collection : " Articles" );
369+ var nodes = await client .Cluster .Nodes .ListVerbose (collection : " Articles" );
370370
371371foreach (var node in nodes )
372372{
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public async Task TestNodesMinimal()
5858 }
5959
6060 [ Fact ]
61- public async Task TestNodesVerbose ( )
61+ public async Task TestNodesListVerbose ( )
6262 {
6363 var client = Connect . Local ( ) ;
6464 var nodesVerbose = await client . Cluster . Nodes . ListVerbose ( ) ;
@@ -73,11 +73,11 @@ public async Task TestNodesVerbose()
7373 }
7474
7575 [ Fact ]
76- public async Task TestNodesVerboseWithCollection ( )
76+ public async Task TestNodesListVerboseWithCollection ( )
7777 {
7878 var client = Connect . Local ( ) ;
7979
80- var collectionName = "TestNodesVerboseWithCollection " ;
80+ var collectionName = "TestNodesListVerboseWithCollection " ;
8181 var collection = await CollectionFactory ( collectionName ) ;
8282
8383 var nodesVerbose = await client . Cluster . Nodes . ListVerbose ( collection . Name ) ;
You can’t perform that action at this time.
0 commit comments