Skip to content

Commit 2b8ce81

Browse files
committed
fix sigma
1 parent ad421ff commit 2b8ce81

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/sut/sigma/tests/src/Functional/ContentEntityTest.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,14 @@ public function testEntityType(): void {
4747
$this->assertStatusMessage('The configuration has been updated.');
4848

4949
// -- Add a new field to make sure the entity type is truly fieldable.
50-
$this->drupalGet('admin/structure/example/fields/add-field');
51-
$edit = [
52-
'new_storage_type' => 'plain_text',
53-
];
54-
$this->submitForm($edit, 'Continue');
50+
$this->drupalGet('admin/structure/example/fields/add-field/plain_text/false');
5551
$edit = [
5652
'label' => 'Foo',
5753
'field_name' => 'foo',
5854
'group_field_options_wrapper' => 'string',
5955
];
6056
$this->submitForm($edit, 'Continue');
61-
$this->submitForm([], 'Save settings');
57+
$this->submitForm([], 'Save');
6258

6359
$this->assertStatusMessage(new FM('Saved %label configuration.', ['%label' => 'Foo']));
6460

0 commit comments

Comments
 (0)