Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
wylieconlon committed Mar 3, 2021
1 parent e6e3dca commit 0582ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/apps/visualize/_histogram_request_start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
log.debug('Field = machine.ram_range');
await PageObjects.visEditor.selectField('machine.ram_range');
await retry.waitFor('interval to be set', async () => {
return await PageObjects.visEditor.getNumericInterval();
return Boolean(await PageObjects.visEditor.getNumericInterval());
});
expect(await PageObjects.visEditor.getNumericInterval()).to.eql(100);
});
Expand Down

0 comments on commit 0582ce8

Please sign in to comment.