Skip to content

Commit ed91524

Browse files
niemyjskiMpdreamz
authored andcommitted
Removed unused string interpolation (#2043)
1 parent eb5b25e commit ed91524

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tests/Indices/Monitoring/IndicesShardStores/IndicesShardStoresUrlTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ public class IndicesShardStoresUrlTests
1111
{
1212
[U] public async Task Urls()
1313
{
14-
await GET($"/_shard_stores")
14+
await GET("/_shard_stores")
1515
.Fluent(c => c.IndicesShardStores())
1616
.Request(c => c.IndicesShardStores(new IndicesShardStoresRequest()))
1717
.FluentAsync(c => c.IndicesShardStoresAsync())
1818
.RequestAsync(c => c.IndicesShardStoresAsync(new IndicesShardStoresRequest()))
1919
;
2020

2121
var index = "index1,index2";
22-
await GET($"/index1%2Cindex2/_shard_stores")
22+
await GET("/index1%2Cindex2/_shard_stores")
2323
.Fluent(c => c.IndicesShardStores(s=>s.Index(index)))
2424
.Request(c => c.IndicesShardStores(new IndicesShardStoresRequest(index)))
2525
.FluentAsync(c => c.IndicesShardStoresAsync(s=>s.Index(index)))

0 commit comments

Comments
 (0)