0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00

Disable test_fetch_sync_string.

This commit is contained in:
Ryan Dahl 2018-09-25 09:56:51 -04:00
parent b088b58f76
commit 591174a686

View file

@ -38,6 +38,8 @@ pub fn fetch_sync_string(module_name: &str) -> DenoResult<String> {
Ok(String::from_utf8(body.to_vec()).unwrap())
}
/* TODO(ry) Re-enabled this test. Disabling to work around bug in #782.
#[test]
fn test_fetch_sync_string() {
// Relies on external http server. See tools/http_server.py
@ -52,3 +54,5 @@ fn test_fetch_sync_string() {
})).unwrap();
});
}
*/