Skip to content

Commit 0eadc14

Browse files
committed
other_test.py
1 parent a3b0fb8 commit 0eadc14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/cli/other_test.py

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

41014101

41024102
def test_active_unusedfunction_only(tmp_path):
4103-
__test_active_checkers(tmp_path, 1, 966, use_unusedfunction_only=True)
4103+
__test_active_checkers(tmp_path, 1, 975, use_unusedfunction_only=True)
41044104

41054105

41064106
def test_active_unusedfunction_only_builddir(tmp_path):
41074107
checkers_exp = [
41084108
'CheckUnusedFunctions::check'
41094109
]
4110-
__test_active_checkers(tmp_path, 1, 966, use_unusedfunction_only=True, checkers_exp=checkers_exp)
4110+
__test_active_checkers(tmp_path, 1, 975, use_unusedfunction_only=True, checkers_exp=checkers_exp)
41114111

41124112

41134113
def test_active_unusedfunction_only_misra(tmp_path):
4114-
__test_active_checkers(tmp_path, 1, 1166, use_unusedfunction_only=True, use_misra=True)
4114+
__test_active_checkers(tmp_path, 1, 1175, use_unusedfunction_only=True, use_misra=True)
41154115

41164116

41174117
def test_active_unusedfunction_only_misra_builddir(tmp_path):
41184118
checkers_exp = [
41194119
'CheckUnusedFunctions::check'
41204120
]
4121-
__test_active_checkers(tmp_path, 1, 1166, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
4121+
__test_active_checkers(tmp_path, 1, 1175, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)

0 commit comments

Comments
 (0)