Skip to content

Commit 82a674f

Browse files
committed
fix test
1 parent 5d64c9a commit 82a674f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/cli/other_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4062,22 +4062,22 @@ def __test_active_checkers(tmp_path, active_cnt, total_cnt, use_misra=False, use
40624062

40634063

40644064
def test_active_unusedfunction_only(tmp_path):
4065-
__test_active_checkers(tmp_path, 1, 975, use_unusedfunction_only=True)
4065+
__test_active_checkers(tmp_path, 1, 186, use_unusedfunction_only=True)
40664066

40674067

40684068
def test_active_unusedfunction_only_builddir(tmp_path):
40694069
checkers_exp = [
40704070
'CheckUnusedFunctions::check'
40714071
]
4072-
__test_active_checkers(tmp_path, 1, 975, use_unusedfunction_only=True, checkers_exp=checkers_exp)
4072+
__test_active_checkers(tmp_path, 1, 186, use_unusedfunction_only=True, checkers_exp=checkers_exp)
40734073

40744074

40754075
def test_active_unusedfunction_only_misra(tmp_path):
4076-
__test_active_checkers(tmp_path, 1, 1175, use_unusedfunction_only=True, use_misra=True)
4076+
__test_active_checkers(tmp_path, 1, 386, use_unusedfunction_only=True, use_misra=True)
40774077

40784078

40794079
def test_active_unusedfunction_only_misra_builddir(tmp_path):
40804080
checkers_exp = [
40814081
'CheckUnusedFunctions::check'
40824082
]
4083-
__test_active_checkers(tmp_path, 1, 1175, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
4083+
__test_active_checkers(tmp_path, 1, 386, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)

0 commit comments

Comments
 (0)