Skip to content

Commit

Permalink
PMM-12352 - fix pgsm test
Browse files Browse the repository at this point in the history
  • Loading branch information
yurkovychv committed Aug 2, 2023
1 parent 33465f6 commit c766789
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/qa-integration/pmm_pgsm_integration_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ const pgsm_service_name_socket = `socket_${container}_${version}_service`;
const container_name = `${container}_${version}`;
const percentageDiff = (a, b) => (a - b === 0 ? 0 : 100 * Math.abs((a - b) / b));

const labels = [{ key: 'database', value: [`${database}`] }];
const labels = [
{ key: 'database', value: [database] },
{ key: 'service_name', value: [pgsm_service_name] },
];

const filters = new DataTable(['filterSection', 'filterToApply']);

Expand Down

0 comments on commit c766789

Please sign in to comment.