Skip to content

Commit

Permalink
[ML] Fix type errors in permissions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peteharverson committed Nov 12, 2020
1 parent 39d6b94 commit 40290b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function ({ getService }: FtrProviderContext) {
const filterItems = ['filter_item_permission'];

const ecIndexPattern = 'ft_module_sample_ecommerce';
const ecExpectedTotalCount = 287;
const ecExpectedTotalCount = '287';
const ecExpectedFieldPanelCount = 2;
const ecExpectedModuleId = 'sample_data_ecommerce';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function ({ getService }: FtrProviderContext) {
const filterItems = ['filter_item_permission'];

const ecIndexPattern = 'ft_module_sample_ecommerce';
const ecExpectedTotalCount = 287;
const ecExpectedTotalCount = '287';
const ecExpectedFieldPanelCount = 2;

const uploadFilePath = path.join(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ({ getService }: FtrProviderContext) {
for (const user of testUsers) {
describe(`(${user})`, function () {
const ecIndexPattern = 'ft_module_sample_ecommerce';
const ecExpectedTotalCount = 287;
const ecExpectedTotalCount = '287';
const ecExpectedFieldPanelCount = 2;
const ecExpectedModuleId = 'sample_data_ecommerce';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ({ getService }: FtrProviderContext) {
for (const user of testUsers) {
describe(`(${user})`, function () {
const ecIndexPattern = 'ft_module_sample_ecommerce';
const ecExpectedTotalCount = 287;
const ecExpectedTotalCount = '287';
const ecExpectedFieldPanelCount = 2;
const ecExpectedModuleId = 'sample_data_ecommerce';

Expand Down

0 comments on commit 40290b1

Please sign in to comment.