diff --git a/core/modules/node/src/Tests/Views/BulkFormTest.php b/core/modules/node/src/Tests/Views/BulkFormTest.php index b823e76..3ab918a 100644 --- a/core/modules/node/src/Tests/Views/BulkFormTest.php +++ b/core/modules/node/src/Tests/Views/BulkFormTest.php @@ -62,7 +62,6 @@ public function testBulkForm() { $this->assertTrue($node->isPublished(), 'Node has been published'); // Make sticky action. - $node->save(); $this->assertFalse($node->isSticky(), 'Node is not sticky'); $edit = array( 'node_bulk_form[0]' => TRUE, @@ -86,7 +85,6 @@ public function testBulkForm() { $this->assertFalse($node->isSticky(), 'Node is not sticky anymore'); // Promote to front page. - $node->save(); $this->assertFalse($node->isPromoted(), 'Node is not promoted to the front page'); $edit = array( 'node_bulk_form[0]' => TRUE,