Skip to content

Commit 07b589e

Browse files
committed
fix formatting
1 parent fdc00c4 commit 07b589e

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

tests/unit/sagemaker/modules/train/sm_recipes/test_utils.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,11 @@ def test_get_args_from_recipe_compute(
180180
assert mock_trainium_args.call_count == 0
181181
assert args is None
182182

183+
183184
@pytest.mark.parametrize(
184185
"test_case",
185186
[
186-
{
187-
"model_type": "llama_v4",
188-
"script": "llama_pretrain.py",
189-
"model_base_name": "llama"
190-
},
187+
{"model_type": "llama_v4", "script": "llama_pretrain.py", "model_base_name": "llama"},
191188
{
192189
"model_type": "llama_v3",
193190
"script": "llama_pretrain.py",
@@ -213,8 +210,6 @@ def test_get_args_from_recipe_compute(
213210
def test_get_trainining_recipe_gpu_model_name_and_script(test_case):
214211
model_type = test_case["model_type"]
215212
script = test_case["script"]
216-
model_base_name, script = _get_trainining_recipe_gpu_model_name_and_script(
217-
model_type
218-
)
213+
model_base_name, script = _get_trainining_recipe_gpu_model_name_and_script(model_type)
219214
assert model_base_name == test_case["model_base_name"]
220215
assert script == test_case["script"]

0 commit comments

Comments
 (0)