diff --git a/infra/charts/feast/templates/tests/test-feast-batch-serving.yaml b/infra/charts/feast/templates/tests/test-feast-batch-serving.yaml index 7c4f2075b9..2fb8ff25c9 100644 --- a/infra/charts/feast/templates/tests/test-feast-batch-serving.yaml +++ b/infra/charts/feast/templates/tests/test-feast-batch-serving.yaml @@ -45,7 +45,7 @@ spec: pd.set_option("display.max_columns", 10) client = Client(core_url=os.getenv("FEAST_CORE_ADDR"), serving_url=os.getenv("FEAST_SERVING_ADDR")) - project = f"project_{int(time.time() / 3600)}" + project = f"testproject_{int(time.time() / 3600)}" if project not in client.list_projects(): client.create_project(project) client.set_project(project) diff --git a/infra/charts/feast/templates/tests/test-feast-online-serving.yaml b/infra/charts/feast/templates/tests/test-feast-online-serving.yaml index 292bb49713..f0db380117 100644 --- a/infra/charts/feast/templates/tests/test-feast-online-serving.yaml +++ b/infra/charts/feast/templates/tests/test-feast-online-serving.yaml @@ -45,7 +45,7 @@ spec: pd.set_option("display.max_columns", 10) client = Client(core_url=os.getenv("FEAST_CORE_ADDR"), serving_url=os.getenv("FEAST_SERVING_ADDR")) - project = f"project_{int(time.time() / 3600)}" + project = f"testproject_{int(time.time() / 3600)}" if project not in client.list_projects(): client.create_project(project) client.set_project(project)