diff --git a/src/__test__/downloadFile.test.ts b/src/__test__/downloadFile.test.ts index 81ed59f..6e7b0ba 100644 --- a/src/__test__/downloadFile.test.ts +++ b/src/__test__/downloadFile.test.ts @@ -56,13 +56,6 @@ describe('The method of downloadFile()', () => { expect(buffer.toString()).toBe(text); }); - it('can get USS file in ASCII_NO_TRAILING_BLANKS mode', async () => { - const text = 'Hello'; - - const buffer = await accessor.downloadFile(getUSSPath('nodeacc/hello_with_trailingblanks.txt'), TransferMode.ASCII_NO_TRAILING_BLANKS); - expect(buffer.toString()).toBe(text); - }); - // Can get USS file in ASCII mode as STREAM it('can get USS file in ASCII mode as STREAM', async () => { const text = 'Hello\r\n';