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

Unified Diff: tests/html/audiocontext_test.dart

Issue 299393008: Remove invalid portion of test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/audiocontext_test.dart
diff --git a/tests/html/audiocontext_test.dart b/tests/html/audiocontext_test.dart
index 81e4e5f69c59d4e2ec16573114c9d9b8c6bee7fa..21e753f10d1cd151645e81d8bb3158f12ffc7559 100644
--- a/tests/html/audiocontext_test.dart
+++ b/tests/html/audiocontext_test.dart
@@ -28,21 +28,6 @@ main() {
}
});
- test('createBuffer', () {
- if(AudioContext.supported) {
- var ctx = new AudioContext();
- Float32List view = new Float32List.fromList([]);
- try {
- // Test that native overload is chosen correctly. Native
- // implementation should throw 'SyntaxError' DomException because the
- // buffer is empty.
- AudioBuffer buffer = ctx.createBufferFromBuffer(view.buffer, false);
- } catch (e) {
- expect(e.name, DomException.SYNTAX);
- }
- }
- });
-
test('audioRenames', () {
if(AudioContext.supported) {
AudioContext context = new AudioContext();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698