Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Unified Diff: tests/lib_strong/html/audiocontext_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698