Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
StyleCI double quote for simple
Browse files Browse the repository at this point in the history
  • Loading branch information
juampi92 committed Feb 24, 2018
1 parent 48c355a commit 7959bd7
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions tests/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function test_resource()
]]);

$response->assertJsonFragment([
"meta" => [
"path" => 'test/resource?',
"next_cursor" => (string) $next_cur,
"per_page" => 5,
"previous_cursor" => (string) $prev_cur,
'meta' => [
'path' => 'test/resource?',
'next_cursor' => (string) $next_cur,
'per_page' => 5,
'previous_cursor' => (string) $prev_cur,
],
]);
}
Expand All @@ -59,11 +59,11 @@ public function test_prev_nav()
]]);

$response->assertJsonFragment([
"meta" => [
"path" => 'test/resource?',
"next_cursor" => null,
"per_page" => 5,
"previous_cursor" => (string) $prev_cur,
'meta' => [
'path' => 'test/resource?',
'next_cursor' => null,
'per_page' => 5,
'previous_cursor' => (string) $prev_cur,
],
]);
}
Expand All @@ -86,11 +86,11 @@ public function test_more_middle_pagination()
]]);

$response->assertJsonFragment([
"meta" => [
"path" => 'test/resource?',
"next_cursor" => (string) $prev_cur_added,
"per_page" => 5,
"previous_cursor" => (string) $first,
'meta' => [
'path' => 'test/resource?',
'next_cursor' => (string) $prev_cur_added,
'per_page' => 5,
'previous_cursor' => (string) $first,
],
]);

Expand All @@ -116,11 +116,11 @@ public function test_prev_is_still_present()
]]);

$response->assertJsonFragment([
"meta" => [
"path" => 'test/resource?',
"next_cursor" => (string) $next_cur_after,
"per_page" => 5,
"previous_cursor" => null,
'meta' => [
'path' => 'test/resource?',
'next_cursor' => (string) $next_cur_after,
'per_page' => 5,
'previous_cursor' => null,
],
]);

Expand All @@ -146,11 +146,11 @@ public function test_surroundings_finished()
]]);

$response->assertJsonFragment([
"meta" => [
"path" => 'test/resource?',
"next_cursor" => null,
"per_page" => 5,
"previous_cursor" => null,
'meta' => [
'path' => 'test/resource?',
'next_cursor' => null,
'per_page' => 5,
'previous_cursor' => null,
],
]);

Expand Down

0 comments on commit 7959bd7

Please sign in to comment.