fix travis

This commit is contained in:
Robin Appelman 2017-02-22 17:07:51 +01:00
commit d609774b97
6 changed files with 11 additions and 39 deletions

View file

@ -77,15 +77,6 @@ class QueryParserTest extends \PHPUnit_Framework_TestCase {
$this->assertEquals([], $search->orderBy);
}
/**
* @expectedException \Sabre\XML\ParseException
*/
public function testParseNoWhere() {
$query = file_get_contents(__DIR__ . '/nowhere.xml');
$parser = new QueryParser();
$parser->parse($query, null, $rootElementName);
}
/**
* @expectedException \Sabre\XML\ParseException
*/
@ -94,13 +85,4 @@ class QueryParserTest extends \PHPUnit_Framework_TestCase {
$parser = new QueryParser();
$parser->parse($query, null, $rootElementName);
}
/**
* @expectedException \Sabre\XML\ParseException
*/
public function testParseNoSelect() {
$query = file_get_contents(__DIR__ . '/noselect.xml');
$parser = new QueryParser();
$parser->parse($query, null, $rootElementName);
}
}