Skip to content

Commit

Permalink
DXCDT-894 | Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya18101 committed Feb 21, 2025
1 parent f2e0706 commit fed30ca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ export const testDataDir = path.resolve(localDir, 'testData');
export function mockPagedData(params, key, data) {
return params?.include_totals
? {
data: {
[key]: data,
total: data?.length || 0,
},
}
data: {
[key]: data,
total: data?.length || 0,
},
}
: {
data,
};
data,
};
}

export function mockMgmtClient() {
Expand Down

0 comments on commit fed30ca

Please sign in to comment.