Skip to content

Commit

Permalink
remove export on endUsersPart
Browse files Browse the repository at this point in the history
  • Loading branch information
dagfinno committed Jan 27, 2025
1 parent 684187b commit 5f49f31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/k6/tests/performancetest_common/readTestdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const endUsers = new SharedArray('endUsers', function () {
return readCsv(filenameEndusers);
});

export function endUsersPart(totalVus, vuId) {
function endUsersPart(totalVus, vuId) {
const endUsersLength = endUsers.length;
if (totalVus == 1) {
return endUsers.slice(0, endUsersLength);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
import exec from 'k6/execution';
import { getDefaultThresholds } from '../../performancetest_common/getDefaultThresholds.js';
import { serviceOwners, endUsersPart } from "../../performancetest_common/readTestdata.js";
import { serviceOwners } from "../../performancetest_common/readTestdata.js";
import { createAndRemoveDialog } from '../../performancetest_common/createDialog.js';
export { setup as setup } from '../../performancetest_common/readTestdata.js';

Expand Down

0 comments on commit 5f49f31

Please sign in to comment.