Skip to content

Commit 4e5e546

Browse files
committed
add missing 0 from test; enable net9
1 parent 6e39fcc commit 4e5e546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/NRedisStack.Tests/NRedisStack.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net7.0;net8.0;net481</TargetFrameworks>
3+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net481</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
<PreserveCompilationContext>true</PreserveCompilationContext>
66
</PropertyGroup>

tests/NRedisStack.Tests/Search/IndexCreationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void TestMissingEmptyFieldCommandArgs()
3535
"numeric1","NUMERIC", INDEXMISSING,
3636
"geo1","GEO", INDEXMISSING,
3737
"geoshape1","GEOSHAPE", "FLAT", INDEXMISSING,
38-
"vector1","VECTOR","FLAT", INDEXMISSING};
38+
"vector1","VECTOR","FLAT", 0, INDEXMISSING};
3939
Assert.Equal(expectedArgs, cmd.Args);
4040
}
4141

0 commit comments

Comments
 (0)