Skip to content

Commit

Permalink
[RAM] Correct renamed function after a race-condition merge (#167026)
Browse files Browse the repository at this point in the history
## Summary
There was an accidental race-condition on a variable re-name and usage
between #166032 &
#166603.

This PR intends to correct that.
  • Loading branch information
delanni authored Sep 22, 2023
1 parent 2091870 commit e2a7157
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
ObjectRemover,
getTestRuleData,
getEventLog,
getConsumerUnauthorizedErrorMessage,
getUnauthorizedErrorMessage,
} from '../../../../common/lib';
import { FtrProviderContext } from '../../../../common/ftr_provider_context';

Expand Down Expand Up @@ -101,7 +101,7 @@ export default function createGetActionErrorLogTests({ getService }: FtrProvider
expect(response.statusCode).to.eql(403);
expect(response.body).to.eql({
error: 'Forbidden',
message: getConsumerUnauthorizedErrorMessage(
message: getUnauthorizedErrorMessage(
'get',
'test.cumulative-firing',
'alertsFixture'
Expand Down

0 comments on commit e2a7157

Please sign in to comment.