Index: tests/lib_strong/html/audiocontext_test.dart |
diff --git a/tests/lib_strong/html/audiocontext_test.dart b/tests/lib_strong/html/audiocontext_test.dart |
index 195130fc045b596137c639e9b8a3aa8bd212289d..be99945d659f38eaee75c17eb7e007df7d69007c 100644 |
--- a/tests/lib_strong/html/audiocontext_test.dart |
+++ b/tests/lib_strong/html/audiocontext_test.dart |
@@ -39,8 +39,8 @@ main() { |
expect(context.createChannelSplitter() is AudioNode, isTrue); |
expect(context.createOscillator() is OscillatorNode, isTrue); |
expect(context.createPanner() is PannerNode, isTrue); |
- expect(context.createScriptProcessor(4096) is ScriptProcessorNode, |
- isTrue); |
+ expect( |
+ context.createScriptProcessor(4096) is ScriptProcessorNode, isTrue); |
} |
}); |
@@ -65,7 +65,7 @@ main() { |
*/ |
test('oscillatorTypes', () { |
- if(AudioContext.supported) { |
+ if (AudioContext.supported) { |
OscillatorNode oscillator = context.createOscillator(); |
oscillator.connectNode(context.destination); |