File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 41
41
class FacebookTest extends TestCase
42
42
{
43
43
protected $ config = [
44
- 'app_id ' => '1337 ' ,
45
- 'app_secret ' => 'foo_secret ' ,
46
- 'default_graph_version ' => 'v0 .0 ' ,
44
+ 'app_id ' => '1337 ' ,
45
+ 'app_secret ' => 'foo_secret ' ,
46
+ 'default_graph_version ' => 'v11 .0 ' ,
47
47
];
48
48
49
49
public function testInstantiatingWithoutAppIdThrows ()
@@ -53,8 +53,8 @@ public function testInstantiatingWithoutAppIdThrows()
53
53
// unset value so there is no fallback to test expected Exception
54
54
putenv (Facebook::APP_ID_ENV_NAME .'= ' );
55
55
$ config = [
56
- 'app_secret ' => 'foo_secret ' ,
57
- 'default_graph_version ' => 'v0 .0 ' ,
56
+ 'app_secret ' => 'foo_secret ' ,
57
+ 'default_graph_version ' => 'v11 .0 ' ,
58
58
];
59
59
new Facebook ($ config );
60
60
}
@@ -67,7 +67,7 @@ public function testInstantiatingWithoutAppSecretThrows()
67
67
putenv (Facebook::APP_SECRET_ENV_NAME .'= ' );
68
68
$ config = [
69
69
'app_id ' => 'foo_id ' ,
70
- 'default_graph_version ' => 'v0 .0 ' ,
70
+ 'default_graph_version ' => 'v11 .0 ' ,
71
71
];
72
72
new Facebook ($ config );
73
73
}
You can’t perform that action at this time.
0 commit comments