We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2750d33 commit 9da0688Copy full SHA for 9da0688
tests/NRedisStack.Tests/PipelineTests.cs
@@ -158,12 +158,10 @@ public void TestJsonPipeline()
158
Assert.Equal("{\"Name\":\"Shachar\",\"Age\":23}", getResponse.Result.ToString());
159
}
160
161
- [SkippableTheory]
162
- [MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
163
- [Obsolete]
164
- public async void Issue401_TestPipelineAsInitialCommand(string endpointId)
+ [SkipIfRedis(Is.OSSCluster)]
+ public async void Issue401_TestPipelineAsInitialCommand()
165
{
166
- IDatabase db = GetCleanDatabase(endpointId);
+ IDatabase db = redisFixture.Redis.GetDatabase();
167
168
Auxiliary.ResetInfoDefaults(); // demonstrate first connection
169
var pipeline = new Pipeline(db);
0 commit comments