From c73b9bcc796a6db1f2ed4cc493ce17c073aec614 Mon Sep 17 00:00:00 2001 From: Felix Faber Date: Wed, 12 Jun 2024 13:21:23 +0200 Subject: [PATCH] Fixed whitespace in test --- test/cli/more-projects_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cli/more-projects_test.py b/test/cli/more-projects_test.py index 2469e8c1ad5c..bbe257775367 100644 --- a/test/cli/more-projects_test.py +++ b/test/cli/more-projects_test.py @@ -645,18 +645,18 @@ def test_shared_items_project(tmpdir = ""): solutionFile = os.path.join(solutionDir, 'Solution.sln') codeMainFile = os.path.join(solutionDir, 'Main', 'MainFile.cpp') codeSharedFile = os.path.join(solutionDir, 'Shared', 'TestClass.cpp') - + args = [ '--platform=win64', '--project={}'.format(solutionFile), '--project-configuration=Release|x64', '-j1' ] - + exitcode, stdout, stderr = cppcheck(args) assert exitcode == 0 lines = stdout.splitlines() - + # Assume no errors, and that shared items code files have been checked as well assert any('2/2 files checked 100% done' in x for x in lines) assert stderr == '' \ No newline at end of file