storage: fix noop test
This commit is contained in:
@@ -160,11 +160,8 @@ describe('Storage', function () {
|
||||
format: 'tgz'
|
||||
};
|
||||
|
||||
it('upload works', function (done) {
|
||||
noop.upload(gBackupConfig, 'file', { }, function (error) {
|
||||
expect(error).to.be(null);
|
||||
done();
|
||||
});
|
||||
it('upload works', async function () {
|
||||
await noop.upload(gBackupConfig, 'file', {});
|
||||
});
|
||||
|
||||
it('can download file', async function () {
|
||||
|
||||
Reference in New Issue
Block a user