Setting EventBus in TestFixture Does Not Update Event Bus in FixtureExecutionResultImpl

Our code uses an autowired EventBus and I am wondering how to make it so that an AnnotatedSagaTestFixture can verify events on it (through .expectPublishedEvents())

AnnotatedSagaTestFixture allows for its event bus to be set via registerResource() but it seems like the event bus that fixtureExecutionResult’s event validator uses to verify events still uses AnnotatedSagaTestFixture’s constructor event bus, the original SimpleEventBus.

How does one get a saga test fixture to update the event bus so that FixtureExecutionResultImpl uses it to verify against?