Skip to content

Commit c733dc2

Browse files
committed
rename dummy var
1 parent d431c2d commit c733dc2

26 files changed

+26
-26
lines changed

tests/Doc/Bf_tutorial.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void run()
2828
//REMOVE_START
2929
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3030
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
31-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
31+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3232
//REMOVE_END
3333
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3434
var db = muxer.GetDatabase();

tests/Doc/Bitmap_tutorial.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void run()
2828
//REMOVE_START
2929
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3030
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
31-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
31+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3232
//REMOVE_END
3333
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3434
var db = muxer.GetDatabase();

tests/Doc/CmdsGenericExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void run(string endpoint = "standalone")
3131
//REMOVE_START
3232
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3333
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
34-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
34+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3535
//REMOVE_END
3636
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3737
var db = muxer.GetDatabase();

tests/Doc/CmdsHashExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public void run()
2626
//REMOVE_START
2727
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
2828
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
29-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
29+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3030
//REMOVE_END
3131
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3232
var db = muxer.GetDatabase();

tests/Doc/CmdsSortedSetExamples.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void run()
2828
//REMOVE_START
2929
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3030
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
31-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
31+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3232
//REMOVE_END
3333
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3434
var db = muxer.GetDatabase();

tests/Doc/CmdsStringExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void run()
2828
//REMOVE_START
2929
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3030
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
31-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
31+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3232
//REMOVE_END
3333
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3434
var db = muxer.GetDatabase();

tests/Doc/Cms_tutorial.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public void run()
3030
//REMOVE_START
3131
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3232
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
33-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
33+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3434
//REMOVE_END
3535
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3636
var db = muxer.GetDatabase();

tests/Doc/Cuckoo_tutorial.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void run()
2929
//REMOVE_START
3030
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3131
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
32-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
32+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3333
//REMOVE_END
3434
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3535
var db = muxer.GetDatabase();

tests/Doc/Geo_tutorial.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void run()
2828
//REMOVE_START
2929
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
3030
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
31-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
31+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
3232
//REMOVE_END
3333
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3434
var db = muxer.GetDatabase();

tests/Doc/HashExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void run()
2424
//REMOVE_START
2525
// This is needed because we're constructing ConfigurationOptions in the test before calling GetConnection
2626
SkipIfTargetConnectionDoesNotExist(EndpointsFixture.Env.Standalone);
27-
var db_ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
27+
var _ = GetCleanDatabase(EndpointsFixture.Env.Standalone);
2828
//REMOVE_END
2929
var muxer = ConnectionMultiplexer.Connect("localhost:6379");
3030
var db = muxer.GetDatabase();

0 commit comments

Comments
 (0)