test: update fixtures

This commit is contained in:
coderaiser 2023-07-08 20:40:12 +03:00
parent 0e663e1dc5
commit f1279666b5
3 changed files with 2 additions and 1 deletions

View file

@ -43,4 +43,3 @@ async function run(TerminalRun, command) {
autoClose: false, autoClose: false,
}); });
} }

View file

@ -1,4 +1,5 @@
'use strict'; 'use strict';
async function copy() { async function copy() {
await IO.copy(dirPath, mp3Dir, mp3Names); await IO.copy(dirPath, mp3Dir, mp3Names);
} }

View file

@ -1,4 +1,5 @@
'use strict'; 'use strict';
async function move() { async function move() {
await IO.move(dirPath, mp3Dir, mp3Names); await IO.move(dirPath, mp3Dir, mp3Names);
} }