From 4f515826d97ee755a00517e5025853f29b5ebf08 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 24 Nov 2022 11:58:02 -0800 Subject: [PATCH] test: lowercase url --- tests/spec/112-status-links.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spec/112-status-links.js b/tests/spec/112-status-links.js index 93b6b539..1d1ca41c 100644 --- a/tests/spec/112-status-links.js +++ b/tests/spec/112-status-links.js @@ -37,10 +37,10 @@ test('External links, hashtags, and mentions have correct attributes', async t = .expect(nthAnchor(3).getAttribute('href')).eql('/tags/tag') .expect(nthAnchor(3).hasAttribute('rel')).notOk() .expect(nthAnchor(3).hasAttribute('target')).notOk() - .expect(nthAnchor(4).getAttribute('href')).eql('/tags/anotherTag') + .expect(nthAnchor(4).getAttribute('href')).eql('/tags/anothertag') .expect(nthAnchor(4).hasAttribute('rel')).notOk() .expect(nthAnchor(4).hasAttribute('target')).notOk() - .expect(nthAnchor(5).getAttribute('href')).eql('/tags/yetAnotherTag') + .expect(nthAnchor(5).getAttribute('href')).eql('/tags/yetanothertag') .expect(nthAnchor(5).hasAttribute('rel')).notOk() .expect(nthAnchor(5).hasAttribute('target')).notOk() .expect(nthAnchor(6).getAttribute('href')).eql('http://example.com')