Skip to content

Commit 79af1ad

Browse files
committed
add more tests
Signed-off-by: Kyle Sayers <[email protected]>
1 parent fa7a898 commit 79af1ad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/llmcompressor/modifiers/quantization/test_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def q_config_kwargs(config_0, config_1):
4545
# modifier overrides if config partially matches anyways
4646
(True, "group", None, "group", "group", "group"),
4747
(True, "group", "group", None, "group", "group"),
48-
# modifier errors if conflict with config
48+
# modifier errors if explicitly conflicts with config
49+
(True, "static", None, "group", "error", "error"),
50+
(True, "static", "group", None, "error", "error"),
4951
(True, "group", None, "static", "error", "error"),
5052
(True, "group", "static", None, "error", "error"),
5153
# modifier overrides to static if nothing is provided

0 commit comments

Comments
 (0)