Commit 23f768f4 authored by Bas de Nooijer's avatar Bas de Nooijer

- fixes for tests

parent 9222c101
......@@ -51,7 +51,7 @@ class Solarium_Result_Select_Facet_FieldTest extends PHPUnit_Framework_TestCase
public function testCount()
{
$this->assertEquals(count($this->_values), $this->_facet->count());
$this->assertEquals(count($this->_values), count($this->_facet));
}
public function testIterator()
......
......@@ -77,7 +77,7 @@ class Solarium_Result_SelectTest extends Solarium_Result_QueryTest
public function testCount()
{
$this->assertEquals(3, $this->_result->count());
$this->assertEquals(3, count($this->_result));
}
public function testIterator()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment