Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 89ff3af

Browse files
committed
Update RedisBasicPersistenceProviderTests.cs
1 parent ea46c8a commit 89ff3af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ServiceStack.Redis.Tests/RedisBasicPersistenceProviderTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ public void Can_As_DeleteAll_with_script()
210210

211211
var type = typeof(TestModel).FullName;
212212
context.EvaluateCode($"redis.call('DeleteAll<{type}>') |> return");
213-
// context.EvaluateCode($"redis.call('As<{type}>').call('DeleteAll') |> return");
214-
// context.RenderLisp($"(call redis \"DeleteAll<{type}>\")");
215-
// context.RenderLisp($"(call (call redis \"As<{type}>\") \"DeleteAll\")");
213+
context.EvaluateCode($"redis.call('As<{type}>').call('DeleteAll') |> return");
214+
context.RenderLisp($"(call redis \"DeleteAll<{type}>\")");
215+
context.RenderLisp($"(call (call redis \"As<{type}>\") \"DeleteAll\")");
216216

217217
var allModels = Redis.GetAll<TestModel>();
218218
Assert.That(allModels, Is.Empty);

0 commit comments

Comments
 (0)