Skip to content
Snippets Groups Projects
Commit 72836ac1 authored by catch's avatar catch
Browse files

Issue #3515664 by quietone, shalini_jha: Removed unused class properties in...

Issue #3515664 by quietone, shalini_jha: Removed unused class properties in \Drupal\Tests\field_ui\FunctionalJavascript\ManageFieldsTest
parent c735c609
Branches
Tags
4 merge requests!5423Draft: Resolve #3329907 "Test2",!3478Issue #3337882: Deleted menus are not removed from content type config,!579Issue #2230909: Simple decimals fail to pass validation,!213Issue #2906496: Give Media a menu item under Content
Pipeline #490449 passed with warnings
Pipeline: drupal

#490458

    Pipeline: drupal

    #490453

      Pipeline: drupal

      #490452

        ......@@ -36,21 +36,6 @@ class ManageFieldsTest extends WebDriverTestBase {
        */
        protected $defaultTheme = 'stark';
        /**
        * @var string
        */
        protected $type;
        /**
        * @var string
        */
        protected $type2;
        /**
        * @var \Drupal\Core\Entity\entityTypeManagerInterface
        */
        protected $entityTypeManager;
        /**
        * {@inheritdoc}
        */
        ......@@ -68,19 +53,16 @@ protected function setUp(): void {
        ]);
        $this->drupalLogin($admin_user);
        $type = $this->drupalCreateContentType([
        $this->drupalCreateContentType([
        'name' => 'Article',
        'type' => 'article',
        ]);
        $this->type = $type->id();
        $type2 = $this->drupalCreateContentType([
        $this->drupalCreateContentType([
        'name' => 'Basic Page',
        'type' => 'page',
        ]);
        $this->type2 = $type2->id();
        $this->entityTypeManager = $this->container->get('entity_type.manager');
        $this->getSession()->resizeWindow(1100, 800);
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment