Commit 2284fb0b authored by Steel Wagstaff's avatar Steel Wagstaff

Test fix

Tiny fix to the test to account for URLs that may have had uppercase
letters (the audio embed converts to lowercase to account for links to
.MP3 files rather than .mp3)
parent 3909c725
......@@ -109,7 +109,7 @@ describe('media-embedder', function () {
assert.equal(element.childElementCount, 1);
assert.equal(element.children[0].tagName, 'AUDIO');
assert.equal(element.children[0].src, url);
assert.equal(element.children[0].src, url.toLowerCase());
});
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment