Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
brookinsconsulting committed Feb 15, 2018
2 parents 30c3b87 + 8d1eeea commit 3b6e3a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/FieldType/ImageIntegrationTest.php
Expand Up @@ -176,7 +176,7 @@ public function getInitialValue()
array(
'data' => null,
'externalData' => array(
'inputUri' => ($path = __DIR__ . '/_fixtures/image.jpg'),
'inputUri' => __DIR__ . '/_fixtures/image.jpg',
'fileName' => 'Ice-Flower.jpg',
'alternativeText' => 'An icy flower.',
),
Expand Down Expand Up @@ -219,7 +219,7 @@ public function getUpdatedValue()
'externalData' => array(
// should be ignored
'id' => 'some/value',
'inputUri' => ($path = __DIR__ . '/_fixtures/image.png'),
'inputUri' => __DIR__ . '/_fixtures/image.png',
'fileName' => 'Blueish-Blue.jpg',
'alternativeText' => 'This blue is so blueish.',
),
Expand Down Expand Up @@ -305,7 +305,7 @@ public function getDeprecatedIdPropertyValue()
array(
'data' => null,
'externalData' => array(
'id' => ($path = __DIR__ . '/_fixtures/image.jpg'),
'id' => __DIR__ . '/_fixtures/image.jpg',
'fileName' => 'Ice-Flower.jpg',
'alternativeText' => 'An icy flower.',
),
Expand Down

0 comments on commit 3b6e3a1

Please sign in to comment.