Skip to content

Commit

Permalink
[ML] Fix test subject ids.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Mar 12, 2020
1 parent 9fa3c4b commit fe6d512
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x-pack/test/functional/services/transform_ui/wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ export function TransformWizardProvider({ getService }: FtrProviderContext) {
},

async assertQueryInputExists() {
await testSubjects.existOrFail('tarnsformQueryInput');
await testSubjects.existOrFail('transformQueryInput');
},

async assertQueryInputMissing() {
await testSubjects.missingOrFail('tarnsformQueryInput');
await testSubjects.missingOrFail('transformQueryInput');
},

async assertQueryValue(expectedQuery: string) {
const actualQuery = await testSubjects.getVisibleText('tarnsformQueryInput');
const actualQuery = await testSubjects.getVisibleText('transformQueryInput');
expect(actualQuery).to.eql(
expectedQuery,
`Query input text should be '${expectedQuery}' (got ${actualQuery})`
Expand Down

0 comments on commit fe6d512

Please sign in to comment.