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

Commit

Permalink
Changed implementation to interface in test.
Browse files Browse the repository at this point in the history
Conflicts:
	Tests/Templating/Helper/FacebookHelperTest.php
  • Loading branch information
Antoine Durieux authored and diegoholiveira committed Sep 16, 2013
1 parent 04f8d70 commit 373a219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/views/initialize.html.twig
Expand Up @@ -7,7 +7,7 @@
{% if async %}
window.fbAsyncInit = function() {
{% endif %}
FB.init({{ {'appId':appId, 'xfbml':xfbml, 'oauth':oauth, 'status':status, 'cookie':cookie, 'logging':logging, 'channelUrl':channelUrl}|json_encode}});
FB.init({{ {'appId':appId, 'xfbml':xfbml, 'oauth':oauth, 'status':status, 'cookie':cookie, 'logging':logging, 'channelUrl':channelUrl}|json_encode }});
{% if async %}
{{ fbAsyncInit }}
};
Expand Down
2 changes: 1 addition & 1 deletion Tests/Templating/Helper/FacebookHelperTest.php
Expand Up @@ -94,7 +94,7 @@ public function testLoginButton()
->setMethods(array('getAppId'))
->getMock();

$routing = $this->getMockBuilder('Symfony\Component\Routing\Generator\UrlGenerator')
$routing = $this->getMockBuilder('Symfony\Component\Routing\Generator\UrlGeneratorInterface')
->disableOriginalConstructor()
->getMock();

Expand Down

0 comments on commit 373a219

Please sign in to comment.