Index: tests/html/form_data_test.dart |
diff --git a/tests/html/form_data_test.dart b/tests/html/form_data_test.dart |
index 0cbe6bc4968693e2b79587649fb420bb2d3e90ee..140c253a9363d9343bf24786f808ae0d53d70233 100644 |
--- a/tests/html/form_data_test.dart |
+++ b/tests/html/form_data_test.dart |
@@ -62,7 +62,7 @@ void main() { |
var blob = new Blob( |
['Indescribable... Indestructible! Nothing can stop it!'], |
'text/plain'); |
- form.append('theBlob', blob, 'theBlob.txt'); |
+ form.appendBlob('theBlob', blob, 'theBlob.txt'); |
}); |
test('send', () { |
@@ -72,7 +72,7 @@ void main() { |
var blob = new Blob( |
[blobString], |
'text/plain'); |
- form.append('theBlob', blob, 'theBlob.txt'); |
+ form.appendBlob('theBlob', blob, 'theBlob.txt'); |
var xhr = new HttpRequest(); |
xhr.open('POST', |