Skip to content

Commit

Permalink
Fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisronline committed Mar 11, 2020

Verified

This commit was signed with the committer’s verified signature.
pradyunsg Pradyun Gedam
1 parent 1a8c41f commit 83e9e20
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions x-pack/test/functional/apps/monitoring/logstash/pipelines.js
Original file line number Diff line number Diff line change
@@ -50,10 +50,10 @@ export default function({ getService, getPageObjects }) {
const pipelinesAll = await pipelinesList.getPipelinesAll();

const tableData = [
{ id: 'main', eventsEmittedRate: '108.3 e/s', nodeCount: '1' },
{ id: 'nginx_logs', eventsEmittedRate: '29.2 e/s', nodeCount: '1' },
{ id: 'main', eventsEmittedRate: '162.5 e/s', nodeCount: '1' },
{ id: 'nginx_logs', eventsEmittedRate: '62.5 e/s', nodeCount: '1' },
{ id: 'test_interpolation', eventsEmittedRate: '0 e/s', nodeCount: '1' },
{ id: 'tweets_about_labradoodles', eventsEmittedRate: '0.6 e/s', nodeCount: '1' },
{ id: 'tweets_about_labradoodles', eventsEmittedRate: '1.2 e/s', nodeCount: '1' },
];

// check the all data in the table
@@ -74,9 +74,9 @@ export default function({ getService, getPageObjects }) {

const tableData = [
{ id: 'test_interpolation', eventsEmittedRate: '0 e/s', nodeCount: '1' },
{ id: 'tweets_about_labradoodles', eventsEmittedRate: '0.6 e/s', nodeCount: '1' },
{ id: 'nginx_logs', eventsEmittedRate: '29.2 e/s', nodeCount: '1' },
{ id: 'main', eventsEmittedRate: '108.3 e/s', nodeCount: '1' },
{ id: 'tweets_about_labradoodles', eventsEmittedRate: '1.2 e/s', nodeCount: '1' },
{ id: 'nginx_logs', eventsEmittedRate: '62.5 e/s', nodeCount: '1' },
{ id: 'main', eventsEmittedRate: '162.5 e/s', nodeCount: '1' },
];

// check the all data in the table

0 comments on commit 83e9e20

Please sign in to comment.