diff --git a/lib/Cake/Test/Case/Model/Datasource/Database/SqliteTest.php b/lib/Cake/Test/Case/Model/Datasource/Database/SqliteTest.php index a121da5753e..403b46e068c 100644 --- a/lib/Cake/Test/Case/Model/Datasource/Database/SqliteTest.php +++ b/lib/Cake/Test/Case/Model/Datasource/Database/SqliteTest.php @@ -431,7 +431,7 @@ public function testVirtualFieldWithFunction() { } /** - * Test that records can be inserted with uuid primary keys, and + * Test that records can be inserted with UUID primary keys, and * that the primary key is not blank * * @return void @@ -441,7 +441,7 @@ public function testUuidPrimaryKeyInsertion() { $Model = ClassRegistry::init('Uuid'); $data = array( - 'title' => 'A uuid should work', + 'title' => 'A UUID should work', 'count' => 10 ); $Model->create($data); @@ -449,7 +449,7 @@ public function testUuidPrimaryKeyInsertion() { $result = $Model->read(); $this->assertEquals($data['title'], $result['Uuid']['title']); - $this->assertTrue(Validation::uuid($result['Uuid']['id']), 'Not a uuid'); + $this->assertTrue(Validation::uuid($result['Uuid']['id']), 'Not a UUID'); } /** diff --git a/lib/Cake/Utility/Validation.php b/lib/Cake/Utility/Validation.php index 45d1e3e379f..f51c3c35d53 100644 --- a/lib/Cake/Utility/Validation.php +++ b/lib/Cake/Utility/Validation.php @@ -791,7 +791,7 @@ public static function userDefined($check, $object, $method, $args = null) { } /** - * Checks that a value is a valid uuid - http://tools.ietf.org/html/rfc4122 + * Checks that a value is a valid UUID - http://tools.ietf.org/html/rfc4122 * * @param string $check Value to check * @return boolean Success