Fix build
Thanks https://stackoverflow.com/questions/12346876/php-foreach-that-returns-keys-only#12346910
This commit is contained in:
parent
e70159c1bb
commit
d367655c6d
@ -236,7 +236,7 @@ class modelTest extends PHPUnit_Framework_TestCase
|
||||
$this->assertTrue($store->exists($ids[$key]), "paste $key exists after storing it");
|
||||
}
|
||||
$this->_model->purge(10);
|
||||
foreach ($ids as $key)
|
||||
foreach (array_keys($ids) as $key)
|
||||
{
|
||||
if (in_array($key, array('x', 'y', 'z')))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user