Skip to content

Commit 1247bd9

Browse files
committed
Fix broken test on master
Signed-off-by: Willem Pienaar <git@willem.co>
1 parent 3553737 commit 1247bd9

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

sdk/python/feast/repo_operations.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ def cli_check_repo(repo_path: Path):
143143
config_path = repo_path / "feature_store.yaml"
144144
if not config_path.exists():
145145
print(
146-
f"Can't find feature_store.yaml at {repo_path}. Make sure you're running this command in an initialized feast repository."
146+
f"Can't find feature_store.yaml at {repo_path}. Make sure you're running feast from an initialized "
147+
f"feast repository. "
147148
)
148149
sys.exit(1)
149150

@@ -153,7 +154,7 @@ def init_repo(repo_path: Path, minimal: bool):
153154
repo_config = repo_path / "feature_store.yaml"
154155

155156
if repo_config.exists():
156-
print("Feature repository is already initalized, nothing to do.")
157+
print("Feature repository is already initialized, nothing to do.")
157158
sys.exit(1)
158159

159160
project_id = generate_project_name()
@@ -212,7 +213,7 @@ def init_repo(repo_path: Path, minimal: bool):
212213

213214
print("Generated feature_store.yaml and example features in example_repo.py")
214215
print(
215-
"Now try runing `feast apply` to apply, or `feast materialize` to sync data to the online store"
216+
"Now try running `feast apply` to apply and `feast materialize` to sync data to the online store"
216217
)
217218

218219

sdk/python/tests/test_historical_retrieval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def test_historical_features_from_bigquery_sources():
336336
provider="local",
337337
online_store=OnlineStoreConfig(
338338
local=LocalOnlineStoreConfig(
339-
os.path.join(temp_dir, "online_store.db"),
339+
path=os.path.join(temp_dir, "online_store.db"),
340340
)
341341
),
342342
)

0 commit comments

Comments
 (0)