Skip to content

Commit 94997d4

Browse files
authored
test: Fix engine types (#136)
1 parent dea13fc commit 94997d4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/integration/resource_manager/test_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def get_engine_params(rm: ResourceManager, engine: Engine):
101101
EngineType.DATA_ANALYTICS, "ENGINE_SETTINGS_PRESET_DATA_ANALYTICS"
102102
),
103103
"scale": ParamValue(23, 23),
104-
"spec": ParamValue("i3.xlarge", "i3.xlarge"),
104+
"spec": ParamValue("B1", "B1"),
105105
"auto_stop": ParamValue(123, "7380s"),
106106
"warmup": ParamValue(WarmupMethod.PRELOAD_ALL_DATA, "ENGINE_SETTINGS_WARM_UP_ALL"),
107107
"description": ParamValue("new db description", "new db description"),

tests/unit/service/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def instance_type_1(provider, region_1) -> InstanceType:
5656
region_id=region_1.key.region_id,
5757
instance_type_id="instance_type_id_1",
5858
),
59-
name="i3.4xlarge",
59+
name="B1",
6060
price_per_hour_cents=10,
6161
storage_size_bytes=0,
6262
)
@@ -70,7 +70,7 @@ def instance_type_2(provider, region_2) -> InstanceType:
7070
region_id=region_2.key.region_id,
7171
instance_type_id="instance_type_id_2",
7272
),
73-
name="i3.8xlarge",
73+
name="B2",
7474
price_per_hour_cents=20,
7575
storage_size_bytes=500,
7676
)
@@ -84,7 +84,7 @@ def instance_type_3(provider, region_2) -> InstanceType:
8484
region_id=region_2.key.region_id,
8585
instance_type_id="instance_type_id_2",
8686
),
87-
name="i3.8xlarge",
87+
name="B2",
8888
price_per_hour_cents=30,
8989
storage_size_bytes=500,
9090
)

0 commit comments

Comments
 (0)