Skip to content

Commit

Permalink
fix: Join character
Browse files Browse the repository at this point in the history
  • Loading branch information
bprusinowski committed Feb 20, 2024
1 parent b2f4183 commit 00c1678
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubeComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function handleSummary(data) {
stdout: `${Math.round(
(100 * data.metrics.http_req_duration.values.avg) /
metadata.queries.DataCubeComponents.expectedDuration
)}% – DataCubeComponents – ${cubeLabel}\n`,
)}% – DataCubeComponents – ${cubeLabel}. `,
};
}

Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubeMetadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function handleSummary(data) {
stdout: `${Math.round(
(100 * data.metrics.http_req_duration.values.avg) /
metadata.queries.DataCubeMetadata.expectedDuration
)}% – DataCubeMetadata – ${cubeLabel}\n`,
)}% – DataCubeMetadata – ${cubeLabel}. `,
};
}

Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubeObservations.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function handleSummary(data) {
stdout: `${Math.round(
(100 * data.metrics.http_req_duration.values.avg) /
metadata.queries.DataCubeObservations.expectedDuration
)}% – DataCubeObservations – ${cubeLabel}\n`,
)}% – DataCubeObservations – ${cubeLabel}. `,
};
}

Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/DataCubePreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function handleSummary(data) {
stdout: `${Math.round(
(100 * data.metrics.http_req_duration.values.avg) /
metadata.queries.DataCubePreview.expectedDuration
)}% – DataCubePreview – ${cubeLabel}\n`,
)}% – DataCubePreview – ${cubeLabel}. `,
};
}

Expand Down
2 changes: 1 addition & 1 deletion k6/performance-tests/graphql/PossibleFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function handleSummary(data) {
stdout: `${Math.round(
(100 * data.metrics.http_req_duration.values.avg) /
metadata.queries.PossibleFilters.expectedDuration
)}% – PossibleFilters – ${cubeLabel}\n`,
)}% – PossibleFilters – ${cubeLabel}. `,
};
}

Expand Down

0 comments on commit 00c1678

Please sign in to comment.