11 lines
263 B
C#
11 lines
263 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using VectorData.ConformanceTests.Support;
|
|
|
|
namespace Redis.ConformanceTests.Support;
|
|
|
|
public class RedisFixture : VectorStoreFixture
|
|
{
|
|
public override TestStore TestStore => RedisTestStore.JsonInstance;
|
|
}
|