소스 검색

Fix support for testing exit code

The `$sectionData` was being overwritten, causing its assertion 
(`$this->assertSame()`) to fail.
Jad Bitar 8 년 전
부모
커밋
8625efd551
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      tests/Composer/Test/AllFunctionalTest.php

+ 1 - 0
tests/Composer/Test/AllFunctionalTest.php

@@ -183,6 +183,7 @@ class AllFunctionalTest extends TestCase
 
                 case 'EXPECT-EXIT-CODE':
                     $sectionData = (integer) $sectionData;
+                    break;
 
                 case 'EXPECT':
                 case 'EXPECT-REGEX':