Skip to content

Commit 47950c7

Browse files
committed
fix: handle different function names in test and backups
1 parent 11be43d commit 47950c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

@xen-orchestra/fs/src/azure.js

+4
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@ export default class AzureHandler extends RemoteHandlerAbstract {
290290
throw error
291291
}
292292
}
293+
// writeFile is used in the backups while _outputFile was used in the tests
294+
async _writeFile(path) {
295+
await this._outputFile(path)
296+
}
293297

294298
async _openFile(path, flags) {
295299
return path

0 commit comments

Comments
 (0)