| Index: tests/html/audiocontext_test.dart
|
| ===================================================================
|
| --- tests/html/audiocontext_test.dart (revision 14418)
|
| +++ tests/html/audiocontext_test.dart (working copy)
|
| @@ -29,7 +29,7 @@
|
|
|
| test('audioRenames', () {
|
| AudioContext context = new AudioContext();
|
| - GainNode gainNode = context.createGainNode();
|
| + GainNode gainNode = context.createGain();
|
| gainNode.connect(context.destination, 0, 0);
|
| expect(gainNode is GainNode, isTrue);
|
|
|
| @@ -38,6 +38,6 @@
|
| expect(context.createChannelSplitter() is ChannelSplitterNode, isTrue);
|
| expect(context.createOscillator() is OscillatorNode, isTrue);
|
| expect(context.createPanner() is PannerNode, isTrue);
|
| - expect(context.createJavaScriptNode(4096) is ScriptProcessorNode, isTrue);
|
| + expect(context.createScriptProcessor(4096) is ScriptProcessorNode, isTrue);
|
| });
|
| }
|
|
|