Skip to content

Commit b8b326d

Browse files
committed
dotnet format
1 parent 7f72812 commit b8b326d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/NRedisStack/Search/ISearchCommands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public interface ISearchCommands
110110
[Obsolete("When possible, use CursorDel(AggregationResult) instead.")]
111111
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]
112112
bool CursorDel(string indexName, long cursorId);
113-
113+
114114
/// <summary>
115115
/// Delete a cursor from the index.
116116
/// </summary>

src/NRedisStack/Search/SearchCommands.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public AggregationResult Aggregate(string index, AggregationRequest query)
2727
// we can issue this anywhere, but follow-up calls need to be on the same server
2828
server = GetRandomServerForCluster(db, out database);
2929
}
30-
30+
3131
RedisResult result;
3232
if (server is not null)
3333
{
@@ -151,7 +151,7 @@ public AggregationResult CursorRead(string indexName, long cursorId, int? count
151151
var resp = db.Execute(SearchCommandBuilder.CursorRead(indexName, cursorId, count)).ToArray();
152152
return new(resp[0], (long)resp[1]);
153153
}
154-
154+
155155
public AggregationResult CursorRead(AggregationResult result, int? count = null)
156156
{
157157
if (result is not AggregationResult.WithCursorAggregationResult withCursor)

tests/NRedisStack.Tests/Search/SearchTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ public async Task TestCursorAsync(string endpointId)
12381238
ex = await Assert.ThrowsAsync<RedisServerException>(async () => await ft.CursorReadAsync(res, 1));
12391239
Assert.Contains("Cursor not found", ex.Message, StringComparison.OrdinalIgnoreCase);
12401240
}
1241-
1241+
12421242
[SkippableTheory]
12431243
[MemberData(nameof(EndpointsFixture.Env.AllEnvironments), MemberType = typeof(EndpointsFixture.Env))]
12441244
public async Task TestCursorEnumerableAsync(string endpointId)

0 commit comments

Comments
 (0)