Skip to content

Commit 8167051

Browse files
committed
Fix formatting
1 parent 2e9f1bb commit 8167051

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/NRedisStack.Tests/Examples/ExampleTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public async Task AsyncExample(string endpointId)
9292
public void PipelineExample(string endpointId)
9393
{
9494
Skip.If(true, "FIXME: JsonSet is not executed in pipeline, see https://github.com/redis/NRedisStack/issues/379");
95-
95+
9696
// Pipeline can get IDatabase for pipeline
9797
IDatabase db = GetCleanDatabase(endpointId);
9898
var pipeline = new Pipeline(db);
@@ -112,10 +112,10 @@ public void PipelineExample(string endpointId)
112112

113113
// Get the Json response
114114
var getResponse = pipeline.Json.GetAsync("person");
115-
115+
116116
// Execute the pipeline
117117
pipeline.Execute();
118-
118+
119119
// Get the result back JSON
120120
var result = getResponse.Result;
121121

0 commit comments

Comments
 (0)