Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
portey committed Feb 29, 2016
1 parent 8cd23ba commit 71505b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Parser/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ParserTest extends \PHPUnit_Framework_TestCase
/**
* @expectedException Youshido\GraphQL\Parser\Exception\VariableTypeNotDefined
*/
public function testTypeNotDefinedException($query)
public function testTypeNotDefinedException()
{
$parser = new Parser();
$parser->setSource('query getZuckProfile($devicePicSize: Int, $second: Int) {
Expand All @@ -43,7 +43,7 @@ public function testTypeNotDefinedException($query)
/**
* @expectedException Youshido\GraphQL\Parser\Exception\UnusedVariableException
*/
public function testTypeUnusedVariableException($query)
public function testTypeUnusedVariableException()
{
$parser = new Parser();
$parser->setSource('query getZuckProfile($devicePicSize: Int, $second: Int) {
Expand All @@ -60,7 +60,7 @@ public function testTypeUnusedVariableException($query)
/**
* @expectedException Youshido\GraphQL\Parser\Exception\DuplicationVariableException
*/
public function testDuplicationVariableException($query)
public function testDuplicationVariableException()
{
$parser = new Parser();
$parser->setSource('query getZuckProfile($devicePicSize: Int, $second: Int, $second: Int) {
Expand Down

0 comments on commit 71505b3

Please sign in to comment.