Skip to content

Commit 7512046

Browse files
committed
Update syntax
1 parent 4fd5403 commit 7512046

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/integration_tests/inference/cli/test_cli_custom_fsx_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def runner():
3737

3838
@pytest.fixture(scope="module")
3939
def custom_endpoint_name():
40-
return "custom-cli-integration-fsx" + get_time_str()
40+
return "custom-cli-integration-fsx-" + get_time_str()
4141

4242
@pytest.fixture(scope="module")
4343
def sagemaker_client():

test/integration_tests/inference/cli/test_cli_custom_s3_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def runner():
3636

3737
@pytest.fixture(scope="module")
3838
def custom_endpoint_name():
39-
return "custom-cli-integration-s3" + get_time_str()
39+
return "custom-cli-integration-s3-" + get_time_str()
4040

4141
@pytest.fixture(scope="module")
4242
def sagemaker_client():

test/integration_tests/inference/cli/test_cli_jumpstart_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def runner():
2121

2222
@pytest.fixture(scope="module")
2323
def js_endpoint_name():
24-
return "js-cli-integration" + get_time_str()
24+
return "js-cli-integration-" + get_time_str()
2525

2626
@pytest.fixture(scope="module")
2727
def sagemaker_client():

test/integration_tests/inference/sdk/test_sdk_custom_fsx_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# --------- Test Configuration ---------
1414
NAMESPACE = "integration"
1515
REGION = "us-east-2"
16-
ENDPOINT_NAME = "custom-sdk-integration-fsx" + get_time_str()
16+
ENDPOINT_NAME = "custom-sdk-integration-fsx-" + get_time_str()
1717

1818
MODEL_NAME = f"test-model-integration-sdk-fsx"
1919
MODEL_LOCATION = "hf-eqa"

test/integration_tests/inference/sdk/test_sdk_custom_s3_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# --------- Test Configuration ---------
1414
NAMESPACE = "integration"
1515
REGION = "us-east-2"
16-
ENDPOINT_NAME = "custom-sdk-integration-s3" + get_time_str()
16+
ENDPOINT_NAME = "custom-sdk-integration-s3-" + get_time_str()
1717

1818
MODEL_NAME = f"test-model-integration-sdk-s3"
1919
MODEL_LOCATION = "hf-eqa"

test/integration_tests/inference/sdk/test_sdk_jumpstart_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# --------- Config ---------
1212
NAMESPACE = "integration"
1313
REGION = "us-east-2"
14-
ENDPOINT_NAME = "js-sdk-integration" + get_time_str()
14+
ENDPOINT_NAME = "js-sdk-integration-" + get_time_str()
1515

1616
INSTANCE_TYPE = "ml.g5.4xlarge"
1717
MODEL_ID = "deepseek-llm-r1-distill-qwen-1-5b"

0 commit comments

Comments
 (0)