We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194f9f6 commit c195475Copy full SHA for c195475
tests/NRedisStack.Tests/Search/SearchTests.cs
@@ -1273,7 +1273,7 @@ public void TestAggregationGroupBy()
1273
// TODO: complete this assert after handling multi bulk reply
1274
actual = (List<object>)res.Get("random");
1275
Assert.Equal(2, actual.Count);
1276
- List<string> possibleValues = ["RediSearch", "RedisAI", "RedisJson"];
+ List<string> possibleValues = new List<string>() { "RediSearch", "RedisAI", "RedisJson" };
1277
Assert.Contains(actual[0].ToString(), possibleValues);
1278
Assert.Contains(actual[1].ToString(), possibleValues);
1279
0 commit comments