Skip to content

Commit 6a1503b

Browse files
authored
Fix Pipeline Test Namespace (#73)
fix pipeline test namespace
1 parent 9ffc212 commit 6a1503b

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

tests/NRedisStack.Tests/PipelineTests.cs

+1-16
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using NRedisStack.Search.FT.CREATE;
77
using NRedisStack.Search;
88

9-
namespace NRedisStack.Tests.Bloom;
9+
namespace NRedisStack.Tests;
1010

1111
public class PipelineTests : AbstractNRedisStackTest, IDisposable
1212
{
@@ -19,21 +19,6 @@ public void Dispose()
1919
redisFixture.Redis.GetDatabase().KeyDelete(key);
2020
}
2121

22-
// [Fact]
23-
// public async Task TestPipeline()
24-
// {
25-
// IDatabase db = redisFixture.Redis.GetDatabase();
26-
// db.Execute("FLUSHALL");
27-
// var pipeline = new Pipeline(db);
28-
29-
// pipeline.Db.StringSetAsync("a", "a1");
30-
// pipeline.Db.StringGetAsync("a");
31-
// pipeline.Db.SortedSetAddAsync("z", new SortedSetEntry[] { new SortedSetEntry("z1", 1) });
32-
// pipeline.Db.SortedSetAddAsync("z", new SortedSetEntry[] { new SortedSetEntry("z2", 4) });
33-
// pipeline.Db.SortedSetIncrementAsync()
34-
// }
35-
36-
3722
[Fact]
3823
public async Task TestModulsPipeline()
3924
{

0 commit comments

Comments
 (0)