Skip to content
Snippets Groups Projects
Commit 00ff3d63 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

tests: fix lint

parent 3a515cd4
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,6 @@ module.exports = { ...@@ -15,6 +15,6 @@ module.exports = {
* *
*/ */
function getRangeStrategy(config) { function getRangeStrategy() {
return 'replace'; return 'replace';
} }
...@@ -2,12 +2,7 @@ module.exports = { ...@@ -2,12 +2,7 @@ module.exports = {
getArtifacts, getArtifacts,
}; };
async function getArtifacts( async function getArtifacts(cargoTomlFileName) {
cargoTomlFileName,
updatedDeps,
newCargoTomlContent,
config
) {
await logger.debug(`cargo.getArtifacts(${cargoTomlFileName})`); await logger.debug(`cargo.getArtifacts(${cargoTomlFileName})`);
let cargoLockFileName; let cargoLockFileName;
try { try {
......
...@@ -2,7 +2,7 @@ module.exports = { ...@@ -2,7 +2,7 @@ module.exports = {
updateDependency, updateDependency,
}; };
function updateDependency(currentFileContent, upgrade) { function updateDependency(currentFileContent) {
// TODO // TODO
return currentFileContent; return currentFileContent;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment