Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 53f8f72

Browse files
committed
Fix argument in redis test
Signed-off-by: Willem Pienaar <[email protected]>
1 parent 52232cc commit 53f8f72

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sdk/python/tests/test_offline_online_store_consistency.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,7 @@ def prep_redis_fs_and_fv() -> Iterator[Tuple[FeatureStore, FeatureView]]:
175175
project=f"test_bq_correctness_{str(uuid.uuid4()).replace('-', '')}",
176176
provider="redis",
177177
online_store=RedisOnlineStoreConfig(
178-
redis_type=RedisType.redis,
179-
redis_connection_string="localhost:6379,db=0",
178+
redis_type=RedisType.redis, connection_string="localhost:6379,db=0",
180179
),
181180
)
182181
fs = FeatureStore(config=config)

0 commit comments

Comments
 (0)