AccessControl.behavious.js has a function that doesnt exists

:1234: Code to reproduce

it('revert if sender doesn\'t have role #2', async function () {
      await expectRevert(
        this.accessControl.senderProtected(OTHER_ROLE, { from: authorized }),
        `${errorPrefix}: account ${authorized.toLowerCase()} is missing role ${OTHER_ROLE}`,
      );

:computer: Environment

This function doesnt exists on AccessControl.sol and because of which this is showing error.

The function is defined for tests here: