summaryrefslogtreecommitdiff
path: root/cli/doc/tests.rs
diff options
context:
space:
mode:
authorValentin Anger <syrupthinker@gryphno.de>2020-05-14 20:10:54 +0200
committerGitHub <noreply@github.com>2020-05-14 14:10:54 -0400
commit5b76f7a838bf869872811c52c26c9ee9f01585b6 (patch)
tree7558e6aa00f94cb5a67ca20c86f23dfe581ee345 /cli/doc/tests.rs
parent8a5068f2b433491c0ae8103016ddb8a2b4aa5351 (diff)
Remove debug prints introduced in e18aaf49c (#5356)
Diffstat (limited to 'cli/doc/tests.rs')
-rw-r--r--cli/doc/tests.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/doc/tests.rs b/cli/doc/tests.rs
index d30736f0d..2bae11ec9 100644
--- a/cli/doc/tests.rs
+++ b/cli/doc/tests.rs
@@ -32,7 +32,6 @@ impl DocFileLoader for TestLoader {
&self,
specifier: &str,
) -> Pin<Box<dyn Future<Output = Result<String, OpError>>>> {
- eprintln!("specifier {:#?}", specifier);
let res = match self.files.get(specifier) {
Some(source_code) => Ok(source_code.to_string()),
None => Err(OpError::other("not found".to_string())),