Skip to content

Commit ce213e5

Browse files
committed
Merge remote-tracking branch 'origin/im/align-tests-with-re' into im/align-tests-with-re
2 parents cf7f671 + a2d57a8 commit ce213e5

32 files changed

+35
-0
lines changed

.github/workflows/linter.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
run: |
2121
dotnet format
2222
23+
- name: status
24+
run: |
25+
git status
26+
2327
- name: Check for modified files
2428
run: |
2529
if (git status | Select-String -Pattern 'modified') {

src/NRedisStack/CoreCommands/Enums/SetInfoAttr.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
namespace NRedisStack.Core;
2+
23
public enum SetInfoAttr
34
{
45
/// <summary>

src/NRedisStack/Search/AggregationRequest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using NRedisStack.Search.Literals;
33

44
namespace NRedisStack.Search;
5+
56
public class AggregationRequest : IDialectAwareParam
67
{
78
private readonly List<object> args = []; // Check if Readonly

tests/Doc/Bf_tutorial.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
// REMOVE_START
1111
namespace Doc;
12+
1213
[Collection("DocsTests")]
1314
// REMOVE_END
1415

tests/Doc/Bitmap_tutorial.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// REMOVE_START
1010
namespace Doc;
11+
1112
[Collection("DocsTests")]
1213
// REMOVE_END
1314

tests/Doc/CmdsGenericExample.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// REMOVE_START
1010
namespace Doc;
11+
1112
[Collection("DocsTests")]
1213
// REMOVE_END
1314

tests/Doc/CmdsHashExample.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using NRedisStack.Tests;
77

88
namespace Doc;
9+
910
[Collection("DocsTests")]
1011
// REMOVE_END
1112

tests/Doc/CmdsListExample.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// REMOVE_START
1010
namespace Doc;
11+
1112
[Collection("DocsTests")]
1213
// REMOVE_END
1314

tests/Doc/CmdsSortedSetExamples.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// REMOVE_START
1010
namespace Doc;
11+
1112
[Collection("DocsTests")]
1213
// REMOVE_END
1314

tests/Doc/CmdsStringExample.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
// REMOVE_START
1010
namespace Doc;
11+
1112
[Collection("DocsTests")]
1213
// REMOVE_END
1314

0 commit comments

Comments
 (0)