Merge "RCFilters: Don't let new params filter out old page"
[lhc/web/wiklou.git] / tests / phpunit / mocks / content / DummyContentForTesting.php
index cdb3f78..4392964 100644 (file)
@@ -2,8 +2,10 @@
 
 class DummyContentForTesting extends AbstractContent {
 
+       const MODEL_ID = "testing";
+
        public function __construct( $data ) {
-               parent::__construct( "testing" );
+               parent::__construct( self::MODEL_ID );
 
                $this->data = $data;
        }