From 27fbe28804dfc3027fab4204fd592bd35b95b120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 2 Oct 2020 21:24:17 +0200 Subject: [PATCH] Try to make Travis happy --- test/cli/test-inline-suppress.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/cli/test-inline-suppress.py b/test/cli/test-inline-suppress.py index 541a0dab8..9b4102d2e 100644 --- a/test/cli/test-inline-suppress.py +++ b/test/cli/test-inline-suppress.py @@ -24,8 +24,3 @@ def test_unmatched_suppression_path_with_extra_stuf(): ret, stdout, stderr = cppcheck(['--inline-suppr', '--enable=information', '--error-exitcode=1', './proj-inline-suppress/2.c']) assert ret == 1 assert 'Unmatched suppression: some_warning_id' in stderr - -def test_backwards_compatibility(): - ret, stdout, stderr = cppcheck(['--inline-suppr', '--enable=unusedFunction', 'proj-inline-suppress/3.cpp']) - assert ret == 0 - assert stderr == ''