From a6333141a9175d0fbe8d2009f2ba3d82f111906d Mon Sep 17 00:00:00 2001 From: lesion Date: Fri, 19 Nov 2021 17:16:38 +0100 Subject: [PATCH] clean getStreaming emptiness test --- test/example-empty.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/example-empty.test.js b/test/example-empty.test.js index 9be5624..a9ef0d5 100644 --- a/test/example-empty.test.js +++ b/test/example-empty.test.js @@ -17,7 +17,7 @@ describe('radiomanifest.js', () => { describe('streaming', () => { it('shoud return no streaming option', async () => { const p = await radiomanifest.get(url) - assert.equal(p.getStreaming().getOptions().length, 0) + expect(p.getStreaming().getOptions().length).to.be.equal(0) }) }) })