Skip to content

Commit 0bdb4c3

Browse files
committed
Fix GraphTests
1 parent 0b1a734 commit 0bdb4c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/NRedisStack.Tests/Graph/GraphTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.Diagnostics.CodeAnalysis;
12
using Xunit;
23
using StackExchange.Redis;
34
using NRedisStack.RedisStackCommands;
@@ -6,6 +7,7 @@
67

78
namespace NRedisStack.Tests.Graph;
89

10+
[SuppressMessage("Usage", "xUnit1026:Theory methods should use all of their parameters")]
911
public class GraphTests : AbstractNRedisStackTest, IDisposable
1012
{
1113
public GraphTests(EndpointsFixture endpointsFixture) : base(endpointsFixture)
@@ -797,7 +799,7 @@ private void AssertTestGeoPoint(IGraphCommands graph)
797799
[SkipIfRedis(Comparison.GreaterThanOrEqual, "7.1.242")]
798800
[MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
799801
[Obsolete]
800-
public void TestPoint()
802+
public void TestPoint(string endpointId)
801803
{
802804
var point = new Point(30.27822306, -97.75134723);
803805

0 commit comments

Comments
 (0)