Skip to content

Commit ade1d10

Browse files
authored
test: fix integration failure (#198)
1 parent 74a1539 commit ade1d10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/connect.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ describe('Connect SDK', () => {
4343
paths: [{source: '/remote/file.txt'}],
4444
token: 'test-token',
4545
});
46-
expect(call.args[1]).toEqual({use_absolute_destination_path: false});
46+
// `allow_dialogs` explicitly overridden (https://github.com/IBM/aspera-sdk-js/issues/196).
47+
expect(call.args[1]).toEqual({allow_dialogs: false, use_absolute_destination_path: false});
4748
});
4849
});
4950

0 commit comments

Comments
 (0)