diff --git a/core/modules/node/src/Tests/Views/BulkFormTest.php b/core/modules/node/src/Tests/Views/BulkFormTest.php index 42dc34a..12b60c5 100644 --- a/core/modules/node/src/Tests/Views/BulkFormTest.php +++ b/core/modules/node/src/Tests/Views/BulkFormTest.php @@ -73,7 +73,6 @@ public function testBulkForm() { // Re-load the node and check the status and sticky flag. $node_storage->resetCache(array($node->id())); $node = $node_storage->load($node->id()); - $this->assertTrue($node->isPublished(), 'Node has been published'); $this->assertTrue($node->isSticky(), 'Node has been made sticky'); // Make unsticky action. @@ -99,7 +98,6 @@ public function testBulkForm() { // Re-load the node and check the status and promoted flag. $node_storage->resetCache(array($node->id())); $node = $node_storage->load($node->id()); - $this->assertTrue($node->isPublished(), 'Node has been published'); $this->assertTrue($node->isPromoted(), 'Node has been promoted to the front page'); // Demote from front page.