Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5e125c6

Browse files
committedJul 2, 2024·
disable profile tests for 7.3.240 and later
1 parent 7b8c44d commit 5e125c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎tests/NRedisStack.Tests/Search/SearchTests.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2619,7 +2619,7 @@ public async Task getSuggestionLengthAndDeleteSuggestionAsync()
26192619
Assert.Equal(2L, await ft.SugLenAsync(key));
26202620
}
26212621

2622-
[SkipIfRedis(Is.Enterprise)]
2622+
[SkipIfRedis(Is.Enterprise, Comparison.GreaterThanOrEqual, "7.3.240")]
26232623
public void TestProfileSearch()
26242624
{
26252625
IDatabase db = redisFixture.Redis.GetDatabase();
@@ -2643,7 +2643,7 @@ public void TestProfileSearch()
26432643
Assert.Equal("1", iteratorsProfile["Size"].ToString());
26442644
}
26452645

2646-
[SkipIfRedis(Is.Enterprise)]
2646+
[SkipIfRedis(Is.Enterprise, Comparison.GreaterThanOrEqual, "7.3.240")]
26472647
public async Task TestProfileSearchAsync()
26482648
{
26492649
IDatabase db = redisFixture.Redis.GetDatabase();
@@ -2727,7 +2727,7 @@ public async Task TestProfileAsync()
27272727
Assert.Equal(2, aggregateRes.TotalResults);
27282728
}
27292729

2730-
[SkipIfRedis(Is.Enterprise, Comparison.LessThan, "7.3.240")]
2730+
// [SkipIfRedis(Is.Enterprise, Comparison.LessThan, "7.3.240")]
27312731
public void TestProfileIssue306()
27322732
{
27332733
IDatabase db = redisFixture.Redis.GetDatabase();
@@ -2757,7 +2757,7 @@ public void TestProfileIssue306()
27572757
Assert.Equal(2, aggregateRes.TotalResults);
27582758
}
27592759

2760-
[SkipIfRedis(Is.Enterprise, Comparison.LessThan, "7.3.240")]
2760+
// [SkipIfRedis(Is.Enterprise, Comparison.LessThan, "7.3.240")]
27612761
public async Task TestProfileAsyncIssue306()
27622762
{
27632763
IDatabase db = redisFixture.Redis.GetDatabase();

0 commit comments

Comments
 (0)
Please sign in to comment.