Issue #3218622: Improve DX of EntityKernelTestBase::enableModules(), call ::refreshServices() there
2 open threads
Merge request reports
Activity
- Resolved by Brad Jones
- Resolved by Brad Jones
26 26 $this->assertSame($account->id(), $current_user->id()); 27 27 } 28 28 29 /** 30 * Ensure that calls to enable or disable modules result in our getting changed this line in version 3 of the diff
26 26 $this->assertSame($account->id(), $current_user->id()); 27 27 } 28 28 29 /** 30 * Ensure references to DI objects are kept in sync. 31 */ 32 public function testEnsureContainerIntegrity() { 33 $storage = new \SplObjectStorage(); 34 $this->disableModules(['user']); 35 $storage->attach($this->entityTypeManager); 36 $this->assertTrue($storage->contains(\Drupal::entityTypeManager()));
Please register or sign in to reply