Skip to content
This repository has been archived by the owner on Mar 29, 2019. It is now read-only.

Commit

Permalink
Merge branch 'patch-3' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelJurasek committed Mar 21, 2018
2 parents 9b2adac + cdad8e9 commit 2c5975d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/KdybyTests/Facebook/Facebook_v2_0.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class Facebook_v2_0Test extends FacebookTestCase
{
$facebook = $this->createWithRequest();

$response = $facebook->api('/' . $this->testUser->id);
$response = $facebook->api('/' . $this->testUser->id . '?fields=id,name,first_name,last_name');
Assert::true(isset($response['id'])); // User ID should be public.
Assert::true(isset($response['name'])); // User's name should be public.
Assert::true(isset($response['first_name'])); // User's first name should be public.
Expand Down
2 changes: 1 addition & 1 deletion tests/KdybyTests/Facebook/Facebook_v2_1.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class Facebook_v2_1Test extends FacebookTestCase
{
$facebook = $this->createWithRequest();

$response = $facebook->api('/' . $this->testUser->id);
$response = $facebook->api('/' . $this->testUser->id . '?fields=id,name,first_name,last_name');
Assert::true(isset($response['id'])); // User ID should be public.
Assert::true(isset($response['name'])); // User's name should be public.
Assert::true(isset($response['first_name'])); // User's first name should be public.
Expand Down
2 changes: 1 addition & 1 deletion tests/KdybyTests/Facebook/Facebook_v2_2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class Facebook_v2_2Test extends FacebookTestCase
{
$facebook = $this->createWithRequest();

$response = $facebook->api('/' . $this->testUser->id);
$response = $facebook->api('/' . $this->testUser->id . '?fields=id,name,first_name,last_name');
Assert::true(isset($response['id'])); // User ID should be public.
Assert::true(isset($response['name'])); // User's name should be public.
Assert::true(isset($response['first_name'])); // User's first name should be public.
Expand Down
2 changes: 1 addition & 1 deletion tests/KdybyTests/Facebook/Facebook_v2_3.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class Facebook_v2_3Test extends FacebookTestCase
{
$facebook = $this->createWithRequest();

$response = $facebook->api('/' . $this->testUser->id);
$response = $facebook->api('/' . $this->testUser->id . '?fields=id,name,first_name,last_name');
Assert::true(isset($response['id'])); // User ID should be public.
Assert::true(isset($response['name'])); // User's name should be public.
Assert::true(isset($response['first_name'])); // User's first name should be public.
Expand Down

0 comments on commit 2c5975d

Please sign in to comment.