From f24cd97dd6b933f1af447e92620946ee6f25ec75 Mon Sep 17 00:00:00 2001 From: shacharPash Date: Thu, 31 Aug 2023 17:18:15 +0300 Subject: [PATCH] check2 --- tests/NRedisStack.Tests/Core Commands/CoreTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/NRedisStack.Tests/Core Commands/CoreTests.cs b/tests/NRedisStack.Tests/Core Commands/CoreTests.cs index 97e56f03..625a6ae4 100644 --- a/tests/NRedisStack.Tests/Core Commands/CoreTests.cs +++ b/tests/NRedisStack.Tests/Core Commands/CoreTests.cs @@ -26,7 +26,7 @@ public void TestSetInfo() Assert.True(db.ClientSetInfo(SetInfoAttr.LibraryName, "anylibname")); Assert.True(db.ClientSetInfo(SetInfoAttr.LibraryVersion, "1.2.3")); info = db.Execute("CLIENT", "INFO").ToString(); - Assert.EndsWith("lib-name=nredisstack lib-ver=0.8.1\n", info); + Assert.EndsWith("lib-name=anylibname lib-ver=1.2.3\n", info); } [SkipIfRedisVersion(Comparison.LessThan, "7.1.242")] @@ -42,6 +42,6 @@ public async Task TestSetInfoƧ() Assert.True( await db.ClientSetInfoAsync(SetInfoAttr.LibraryName, "anylibname")); Assert.True( await db.ClientSetInfoAsync(SetInfoAttr.LibraryVersion, "1.2.3")); info = (await db.ExecuteAsync("CLIENT", "INFO")).ToString(); - Assert.EndsWith("lib-name=nredisstack lib-ver=0.8.1\n", info); + Assert.EndsWith("lib-name=anylibname lib-ver=1.2.3\n", info); } } \ No newline at end of file