seems impacted by removal of cache, let's see if we can adjust the test

pull/1014/head
El RIDO 2022-11-05 10:00:12 +01:00
parent 9a1f3aeca5
commit f4eed668e7
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 3 additions and 2 deletions

View File

@ -261,6 +261,9 @@ class ModelTest extends PHPUnit_Framework_TestCase
$paste->store();
$paste->exists();
$comment = $paste->getComment(Helper::getPasteId());
$comment->setData($commentData);
$db = new PDO(
$options['model_options']['dsn'],
$options['model_options']['usr'],
@ -271,8 +274,6 @@ class ModelTest extends PHPUnit_Framework_TestCase
$statement->execute();
$statement->closeCursor();
$comment = $paste->getComment(Helper::getPasteId());
$comment->setData($commentData);
$comment->store();
}