Skip to content

Commit cc63852

Browse files
committed
[test]: include ltx2_3_base in expected LTX-2 preset set
hao-ai-lab#1397 added the ltx2_3_base preset but test_ltx2_presets_registered still asserts only 3 presets, so it fails on current main. Drive-by fix to unblock CI for this PR. Pre-existing bug, surfaced because this PR also touches CI-running test files.
1 parent a457b17 commit cc63852

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fastvideo/tests/api/test_presets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def test_ltx2_presets_registered(self) -> None:
334334
import fastvideo.registry # noqa: F401
335335
presets = get_presets_for_family("ltx2")
336336
names = {p.name for p in presets}
337-
assert names == {"ltx2_base", "ltx2_distilled", "ltx2_two_stage"}
337+
assert names == {"ltx2_base", "ltx2_3_base", "ltx2_distilled", "ltx2_two_stage"}
338338

339339
def test_ltx2_base_lookup(self) -> None:
340340
import fastvideo.registry # noqa: F401

0 commit comments

Comments
 (0)