Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 28fd8a41 authored by drishu's avatar drishu
Browse files

OEL-1514: Date object not needed in creating test nodes.

parent e33ca3cc
No related branches found
No related tags found
2 merge requests!156OEL-1450: Epic list pages.,!139OEL-1514: Improve list pages integration in whitelabel
......@@ -4,7 +4,7 @@ declare(strict_types = 1);
namespace Drupal\Tests\oe_whitelabel_list_pages\Functional;
use Drupal\Core\Datetime\DrupalDateTime;
use Behat\Mink\Element\ElementInterface;
use Drupal\node\Entity\Node;
use Drupal\node\NodeInterface;
use Drupal\Tests\oe_whitelabel\Functional\WhitelabelBrowserTestBase;
......@@ -34,13 +34,12 @@ class ListPagesTest extends WhitelabelBrowserTestBase {
// Create some test nodes.
for ($i = 0; $i < 12; $i++) {
$date = new DrupalDateTime('20-10-2020');
$values = [
'title' => 'News number ' . $i,
'type' => 'oe_sc_news',
'body' => 'This is content number ' . $i,
'status' => NodeInterface::PUBLISHED,
'created' => $date->getTimestamp(),
'created' => '2020-10-20',
];
$node = Node::create($values);
$node->save();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment