Issue #3074627 by mikelutz: Fix passing invalid second argument to $this->container->get() in Drupal\Tests\node\Kernel\NodeConditionTest::testConditions()
parent
b1cf1075c1
commit
b7066103d0
|
|
@ -31,7 +31,7 @@ class NodeConditionTest extends EntityKernelTestBase {
|
||||||
* Tests conditions.
|
* Tests conditions.
|
||||||
*/
|
*/
|
||||||
public function testConditions() {
|
public function testConditions() {
|
||||||
$manager = $this->container->get('plugin.manager.condition', $this->container->get('container.namespaces'));
|
$manager = $this->container->get('plugin.manager.condition');
|
||||||
$this->createUser();
|
$this->createUser();
|
||||||
|
|
||||||
// Get some nodes of various types to check against.
|
// Get some nodes of various types to check against.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue