Skip to content

Commit

Permalink
check2
Browse files Browse the repository at this point in the history
  • Loading branch information
shacharPash committed Aug 31, 2023
1 parent f59afe0 commit f24cd97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/NRedisStack.Tests/Core Commands/CoreTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand All @@ -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);
}
}

0 comments on commit f24cd97

Please sign in to comment.