Closed (fixed)
Project:
Group
Version:
3.3.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
17 Jul 2026 at 07:17 UTC
Updated:
31 Jul 2026 at 12:55 UTC
Jump to comment: Most recent
Tests on 3.3.x are failing for a while now where they didn't use to, let's use git bisect or other tools to figure out what changed in core.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
kristiaanvandeneyndeHmm, just noticed something. Wouldn't it be funny if I got to don my hotdog suit.
Comment #4
kristiaanvandeneyndeLocally seeing this fail, which is after upgrading to recent core versions:
Comment #5
kristiaanvandeneyndeSo this code is new:
And that install() call triggers:
Apparently too early during the test, as it's then trying to create the group roles field in GroupMembershipPostInstall but the storage does not exist yet. So
$field_storage = $fsc_storage->load('group_relationship.group_roles');looks for the new storage, but can't find it.Comment #6
kristiaanvandeneyndeOkay so with some local changes I can get 3 cases to fail, two go green after I revert #3564969: Static cache field storage definitions
Comment #7
kristiaanvandeneynde#3045509: EntityFieldManager key/value field map gets out of sync, doesn't recognise bundle fields was the other culprit, with the following CR: https://www.drupal.org/node/3591180
Comment #9
kristiaanvandeneyndeSome days are fun, some days are not. This one was not :/