Browse Source

Skip deprecated tests.

Mark Scherer 9 years ago
parent
commit
bfd3f8c917
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Test/Case/Model/Behavior/RevisionBehaviorTest.php

+ 4 - 1
Test/Case/Model/Behavior/RevisionBehaviorTest.php

@@ -27,6 +27,9 @@ class RevisionBehaviorTest extends CakeTestCase {
 
 	public function setUp() {
 		parent::setUp();
+
+		$this->skipIf(true, 'Deprecated');
+
 		$this->RevisionBehavior = new RevisionBehavior();
 	}
 
@@ -878,7 +881,7 @@ class RevisionBehaviorTest extends CakeTestCase {
 		$Article->initializeRevisions();
 
 		$Article->create([
-			'title' => 'første barn',
+			'title' => 'f�rste barn',
 			'content' => 'stuff',
 			'parent_id' => 3,
 			'user_id' => 1]);