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

Unified Diff: tests/html/audiobuffersourcenode_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/html/audiobuffersourcenode_test.dart
diff --git a/tests/html/audiobuffersourcenode_test.dart b/tests/html/audiobuffersourcenode_test.dart
index c55c08c03f8c264c63cb23c3e67020d74c2a9be8..7da731fb830e13858ab6cf216cd9714f32490b31 100644
--- a/tests/html/audiobuffersourcenode_test.dart
+++ b/tests/html/audiobuffersourcenode_test.dart
@@ -1,10 +1,10 @@
library AudioBufferSourceNodeTest;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_individual_config.dart';
import 'dart:web_audio';
main() {
-
useHtmlIndividualConfiguration();
group('supported', () {
@@ -15,7 +15,7 @@ main() {
group('functional', () {
test('createBuffer', () {
- if(AudioContext.supported) {
+ if (AudioContext.supported) {
var ctx = new AudioContext();
AudioBufferSourceNode node = ctx.createBufferSource();
expect(node is AudioBufferSourceNode, isTrue);

Powered by Google App Engine
This is Rietveld 408576698