Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / yaml / Tests / Fixtures / YtsTypeTransfers.yml
index 8fefa494cfb20bdbf3e712adcb4c500a70ad7708..dea0be010b58c353d3296fdfd72d2fa43a51d8a8 100644 (file)
@@ -52,10 +52,10 @@ php: |
 test: Forcing Strings
 brief: >
     Any YAML type can be forced into a string using the
-    explicit !str method.
+    explicit !!str method.
 yaml: |
-    date string: !str 2001-08-01
-    number string: !str 192
+    date string: !!str 2001-08-01
+    number string: !!str 192
 php: |
     array(
       'date string' => '2001-08-01',
@@ -210,20 +210,6 @@ php: |
       'negative one-thousand' => -1000.0
     )
 ---
-test: Integers as Map Keys
-brief: >
-    An integer can be used a dictionary key.
-yaml: |
-    1: one
-    2: two
-    3: three
-php: |
-    array(
-        1 => 'one',
-        2 => 'two',
-        3 => 'three'
-    )
----
 test: Floats
 dump_skip: true
 brief: >