Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2
This commit is contained in:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -107,4 +107,5 @@ class CrudTest extends KernelTestBase {
|
|||
->getFieldMapping($field_name);
|
||||
$this->assertEqual($mapping, $field_mapping, 'Field mapping updated.');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -50,4 +50,5 @@ class DateTimeFieldRdfaTest extends FieldRdfaTestBase {
|
|||
public function testDefaultFormatter() {
|
||||
$this->assertFormatterRdfa(array('type' => 'datetime_default'), 'http://schema.org/dateCreated', array('value' => $this->testValue . 'Z', 'type' => 'literal', 'datatype' => 'http://www.w3.org/2001/XMLSchema#dateTime'));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -47,4 +47,5 @@ class EmailFieldRdfaTest extends FieldRdfaTestBase {
|
|||
// Test the mailto formatter.
|
||||
$this->assertFormatterRdfa(array('type' => 'email_mailto'), 'http://schema.org/email', array('value' => $this->testValue));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -200,4 +200,5 @@ class NumberFieldRdfaTest extends FieldRdfaTestBase {
|
|||
$this->entity = EntityTest::create(array());
|
||||
$this->entity->{$this->fieldName}->value = $testValue;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -54,4 +54,5 @@ class StringFieldRdfaTest extends FieldRdfaTestBase {
|
|||
// Tests the string formatter.
|
||||
$this->assertFormatterRdfa(array('type' => 'string'), 'http://schema.org/text', array('value' => $this->testValue));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -65,4 +65,5 @@ class TelephoneFieldRdfaTest extends FieldRdfaTestBase {
|
|||
// Tests the telephone link formatter with custom title.
|
||||
$this->assertFormatterRdfa($formatter, 'http://schema.org/telephone', $expected_rdf_value);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -69,4 +69,5 @@ class TextFieldRdfaTest extends FieldRdfaTestBase {
|
|||
// Tests the trimmed formatter.
|
||||
$this->assertFormatterRdfa(array('type' => 'text_trimmed'), 'http://schema.org/text', array('value' => $formatted_value));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue