From 96f2cf2dd54205fd822727a69d1242bc5a7b8a70 Mon Sep 17 00:00:00 2001 From: hsuan-lun-chiang Date: Fri, 24 Jul 2026 10:19:57 +0000 Subject: [PATCH] Fix test_scan_layers_mismatch_tpu layer path assertion Update layer path assertion in test_scan_layers_mismatch_tpu from decoder/layers/0/ to decoder/layers_0/ to match the unscanned layer naming structure introduced in PR #4504. --- tests/integration/checkpointing_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/checkpointing_test.py b/tests/integration/checkpointing_test.py index 5e263fa35f..134aadd5a2 100644 --- a/tests/integration/checkpointing_test.py +++ b/tests/integration/checkpointing_test.py @@ -232,5 +232,5 @@ def get_cmd(steps, metrics_file): # reports them as missing rather than leaving them at their init values. message = str(excinfo.value) assert "Checkpoint does not match the model" in message - assert "decoder/layers/0/" in message + assert "decoder/layers_0/" in message assert "scan_layers" in message