File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Tests/Indices/Monitoring/IndicesShardStores Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ public class IndicesShardStoresUrlTests
11
11
{
12
12
[ U ] public async Task Urls ( )
13
13
{
14
- await GET ( $ "/_shard_stores")
14
+ await GET ( "/_shard_stores" )
15
15
. Fluent ( c => c . IndicesShardStores ( ) )
16
16
. Request ( c => c . IndicesShardStores ( new IndicesShardStoresRequest ( ) ) )
17
17
. FluentAsync ( c => c . IndicesShardStoresAsync ( ) )
18
18
. RequestAsync ( c => c . IndicesShardStoresAsync ( new IndicesShardStoresRequest ( ) ) )
19
19
;
20
20
21
21
var index = "index1,index2" ;
22
- await GET ( $ "/index1%2Cindex2/_shard_stores")
22
+ await GET ( "/index1%2Cindex2/_shard_stores" )
23
23
. Fluent ( c => c . IndicesShardStores ( s=> s . Index ( index ) ) )
24
24
. Request ( c => c . IndicesShardStores ( new IndicesShardStoresRequest ( index ) ) )
25
25
. FluentAsync ( c => c . IndicesShardStoresAsync ( s=> s . Index ( index ) ) )
You can’t perform that action at this time.
0 commit comments