From 7ec45d9519a35406b8f8f959ac0a4947aa92e963 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Thu, 6 Jul 2017 17:23:25 -0400 Subject: [PATCH] Satisfy linter --- test/unit/blocks_sounds.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/unit/blocks_sounds.js b/test/unit/blocks_sounds.js index 2d0312913..e6c4bda91 100644 --- a/test/unit/blocks_sounds.js +++ b/test/unit/blocks_sounds.js @@ -1,6 +1,8 @@ const test = require('tap').test; const Sound = require('../../src/blocks/scratch3_sound'); -let playedSound, playedDrum, playedInstrument; +let playedSound; +let playedDrum; +let playedInstrument; const runtime = { audioEngine: { numDrums: 3, @@ -95,7 +97,7 @@ test('playDrum uses 1-indexing and wrap clamps', t => { test('setInstrument uses 1-indexing and wrap clamps', t => { // Stub getSoundState - blocks._getSoundState = () => ({}) + blocks._getSoundState = () => ({}); let args = {INSTRUMENT: 1}; blocks.setInstrument(args, util);