Skip to content

Commit c73b9bc

Browse files
author
Felix Faber
committed
Fixed whitespace in test
1 parent 08c3227 commit c73b9bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/cli/more-projects_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,18 +645,18 @@ def test_shared_items_project(tmpdir = ""):
645645
solutionFile = os.path.join(solutionDir, 'Solution.sln')
646646
codeMainFile = os.path.join(solutionDir, 'Main', 'MainFile.cpp')
647647
codeSharedFile = os.path.join(solutionDir, 'Shared', 'TestClass.cpp')
648-
648+
649649
args = [
650650
'--platform=win64',
651651
'--project={}'.format(solutionFile),
652652
'--project-configuration=Release|x64',
653653
'-j1'
654654
]
655-
655+
656656
exitcode, stdout, stderr = cppcheck(args)
657657
assert exitcode == 0
658658
lines = stdout.splitlines()
659-
659+
660660
# Assume no errors, and that shared items code files have been checked as well
661661
assert any('2/2 files checked 100% done' in x for x in lines)
662662
assert stderr == ''

0 commit comments

Comments
 (0)