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

Commit cb05049

Browse files
committed
Add example of ChangeDb() in comments
1 parent 29c3d01 commit cb05049

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/ServiceStack.Redis.Tests/BasicRediscClientManagerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public void Can_select_db()
2525
using (var client = redisManager.GetClient())
2626
{
2727
client.Db = 2;
28+
//((RedisClient)client).ChangeDb(2);
2829
var db = client.Get<int>("db");
2930
Assert.That(db, Is.EqualTo(2));
3031
}

0 commit comments

Comments
 (0)