Skip to content

Commit

Permalink
Fix order of json attributes in expected results
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuLamiot committed Jun 5, 2024
1 parent 7d65045 commit 781bd6b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,15 +324,15 @@
'lcp' => json_encode(
(object) [
'type' => 'bg-img',
'src' => '',
'bg_set' => [
[
'src' => 'http://example.org/anotherlcp.jpg'
],
[
'src' => 'http://example.org/anotherlcp2.jpg'
],
]
],
'src' => ''
],
),
'viewport' => json_encode( [
Expand Down Expand Up @@ -418,15 +418,15 @@
'lcp' => json_encode(
(object) [
'type' => 'bg-img-set',
'src' => '',
'bg_set' => [
[
'src' => 'http://example.org/anotherlcp.jpg'
],
[
'src' => 'http://example.org/anotherlcp2.jpg'
],
]
],
'src' => ''
],
),
'viewport' => json_encode( [
Expand Down

0 comments on commit 781bd6b

Please sign in to comment.