Просмотр исходного кода

add a verification step for investigating failures in tests below PHP 7.2

El RIDO 3 лет назад
Родитель
Сommit
6caf1143df
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tst/ModelTest.php

+ 1 - 1
tst/ModelTest.php

@@ -259,7 +259,7 @@ class ModelTest extends PHPUnit_Framework_TestCase
         $paste = $model->getPaste();
         $paste->setData($pasteData);
         $paste->store();
-        $paste->exists();
+        $this->assertTrue($paste->exists(), 'paste exists before creating comment');
 
         $comment = $paste->getComment(Helper::getPasteId());
         $comment->setData($commentData);