Index: tests/standalone/io/http_proxy_test.dart |
diff --git a/tests/standalone/io/http_proxy_test.dart b/tests/standalone/io/http_proxy_test.dart |
index e2505f35953bcf8abadd08b26fcdc8b164696074..9a921078420cadbae8ffb5aef8cad7869ee28fe7 100644 |
--- a/tests/standalone/io/http_proxy_test.dart |
+++ b/tests/standalone/io/http_proxy_test.dart |
@@ -173,7 +173,7 @@ class ProxyServer { |
List<String> tokens = authorization.split(" "); |
Expect.equals("Basic", tokens[0]); |
String auth = |
- CryptoUtils.bytesToBase64(UTF8.encode("$username:$password")); |
+ BASE64.encode(UTF8.encode("$username:$password")); |
if (auth != tokens[1]) { |
basicAuthenticationRequired(request); |
return; |