From 591174a686bc35c86b2100d660c7f066598a8829 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 25 Sep 2018 09:56:51 -0400 Subject: [PATCH] Disable test_fetch_sync_string. --- src/http.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/http.rs b/src/http.rs index 3b5ede10e3..5f78cf232c 100644 --- a/src/http.rs +++ b/src/http.rs @@ -38,6 +38,8 @@ pub fn fetch_sync_string(module_name: &str) -> DenoResult { 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(); }); } + +*/