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) }) }) })