Skip to content

Commit

Permalink
fix: error redis host on test
Browse files Browse the repository at this point in the history
  • Loading branch information
Memoyu committed Jul 30, 2023
1 parent 48eba70 commit d094c5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/EasyCaching.FreeRedis.Tests/FreeRedisCachingBusTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public FreeRedisCachingBusTest()
{
config.ConnectionStrings = new List<ConnectionStringBuilder>
{
"192.168.3.86:6379,defaultDatabase=6,poolsize=10"
"127.0.0.1,defaultDatabase=6,poolsize=10"
};
config.SerializerName = "json";
});
Expand All @@ -45,7 +45,7 @@ public void WithFreeRedisBus_Connectioned_Should_Succeed()
{
config.ConnectionStrings = new List<ConnectionStringBuilder>
{
"192.168.3.86:6379,defaultDatabase=6,poolsize=10"
"127.0.0.1,defaultDatabase=6,poolsize=10"
};
});
});
Expand Down

0 comments on commit d094c5a

Please sign in to comment.