Set CdbTest to skipped instead of incomplete
authorumherirrender <umherirrender_de.wp@web.de>
Mon, 30 Apr 2012 07:49:31 +0000 (09:49 +0200)
committerumherirrender <umherirrender_de.wp@web.de>
Mon, 30 Apr 2012 07:49:31 +0000 (09:49 +0200)
When the native support is not available, the test is not incomplete.
See also the DiffBlob test and xdiff.

Change-Id: I16c14efc3f24e4171a699390d99ca6509d6a28c8

tests/phpunit/includes/CdbTest.php

index 6c3e666..b5418dd 100644 (file)
@@ -8,7 +8,7 @@ class CdbTest extends MediaWikiTestCase {
 
        public function setUp() {
                if ( !CdbReader::haveExtension() ) {
-                       $this->markTestIncomplete( 'This test requires native CDB support to be present.' );
+                       $this->markTestSkipped( 'Native CDB support is not available' );
                }
        }