Skip to content

Commit

Permalink
Un-skipping some tests in order to figure out where the problem comes…
Browse files Browse the repository at this point in the history
… from
  • Loading branch information
lorenzo committed Feb 17, 2016
1 parent fb8da86 commit a5873a6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/TestCase/Database/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ public function testSelectWithJoinsConditions()
*/
public function testSelectAliasedJoins()
{
$this->markTestSkipped('This test fails on travis for older PHP.');
$query = new Query($this->connection);
$result = $query
->select(['title', 'name'])
Expand Down Expand Up @@ -3512,8 +3511,6 @@ public function testUnbufferedQuery()
$this->assertCount(0, $result, 'Unbuffered queries only have a count when results are fetched');

$list = $result->fetchAll('assoc');
$this->skipIf(count($list) === 0, 'This test fails oddly on travis with PHP 5.6');

$this->assertCount(3, $list);
$result->closeCursor();

Expand Down

0 comments on commit a5873a6

Please sign in to comment.