Skip to content

Commit

Permalink
Fixed whitespace in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Faber committed Jun 12, 2024
1 parent 08c3227 commit c73b9bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cli/more-projects_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 == ''

0 comments on commit c73b9bc

Please sign in to comment.