From: Kai Schaper <303@posteo.de>
Date: Wed, 12 Oct 2016 16:18:55 +0000 (+0200)
Subject: actually use const
X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=cbfc12044dda7cb6ee48e18fe3e769de2c1c0ac1;p=mastodon.git
actually use const
---
diff --git a/spec/javascript/components/avatar.test.jsx b/spec/javascript/components/avatar.test.jsx
index a0f67e700..852e13a89 100644
--- a/spec/javascript/components/avatar.test.jsx
+++ b/spec/javascript/components/avatar.test.jsx
@@ -6,7 +6,7 @@ import Avatar from '../../../app/assets/javascripts/components/components/avatar
describe('', () => {
const src = '/path/to/image.jpg';
const size = 100;
- const wrapper = render();
+ const wrapper = render();
it('renders an img element with the given src', () => {
expect(wrapper.find('img')).to.have.attr('src', `${src}`);