Skip to content

Commit b591959

Browse files
authored
fix: Update Static Endpoint (#2931)
1 parent bb7563f commit b591959

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/integ/sagemaker/lineage/conftest.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545

4646
SLEEP_TIME_SECONDS = 1
4747
SLEEP_TIME_TWO_SECONDS = 2
48-
STATIC_PIPELINE_NAME = "SdkIntegTestStaticPipeline17"
49-
STATIC_ENDPOINT_NAME = "SdkIntegTestStaticEndpoint17"
50-
STATIC_MODEL_PACKAGE_GROUP_NAME = "SdkIntegTestStaticPipeline17ModelPackageGroup"
48+
STATIC_PIPELINE_NAME = "SdkIntegTestStaticPipeline20"
49+
STATIC_ENDPOINT_NAME = "SdkIntegTestStaticEndpoint20"
50+
STATIC_MODEL_PACKAGE_GROUP_NAME = "SdkIntegTestStaticPipeline20ModelPackageGroup"
5151

5252

5353
@pytest.fixture

tests/integ/test_workflow.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
ConditionLessThanOrEqualTo,
6868
)
6969
from sagemaker.workflow.condition_step import ConditionStep
70+
from sagemaker.workflow.condition_step import JsonGet as ConditionStepJsonGet
7071
from sagemaker.workflow.callback_step import (
7172
CallbackStep,
7273
CallbackOutput,
@@ -2831,7 +2832,7 @@ def test_end_to_end_pipeline_successful_execution(
28312832

28322833
# define condition step
28332834
cond_lte = ConditionLessThanOrEqualTo(
2834-
left=JsonGet(
2835+
left=ConditionStepJsonGet(
28352836
step=step_eval,
28362837
property_file=evaluation_report,
28372838
json_path="regression_metrics.mse.value",

0 commit comments

Comments
 (0)