Explorar o código

Fix build

Thanks https://stackoverflow.com/questions/12346876/php-foreach-that-returns-keys-only#12346910
rugk %!s(int64=10) %!d(string=hai) anos
pai
achega
d367655c6d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tst/model.php

+ 1 - 1
tst/model.php

@@ -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')))
             {