Merge "jquery.suggestions: Correctly place dropdown for inputs with 'position: fixed'"
[lhc/web/wiklou.git] / tests / phpunit / includes / diff / CustomDifferenceEngine.php
index c760d02..47cdb15 100644 (file)
@@ -7,7 +7,7 @@ class CustomDifferenceEngine extends DifferenceEngine {
        }
 
        public function generateContentDiffBody( Content $old, Content $new ) {
-               return $old->getNativeData() . '|' . $new->getNativeData();
+               return $old->getText() . '|' . $new->getText();
        }
 
        public function showDiffStyle() {