File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 == ''
You can’t perform that action at this time.
0 commit comments