Change record status: 
Project: 
Introduced in branch: 
11.1.x
Introduced in version: 
11.1.0
Description: 

Deprecate the string code path for values parameter in BlockContentTestBase::createBlockContentType with a string for the first parameter is deprecated. The first parameter, $values, must be an array.

Before

$this->createBlockContentType('test_block');

After

$this->createBlockContentType(['id' => 'test_block']);

Impacts: 
Module developers