Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit f0238cf

Browse files
committed
Remove some printlns from testing
1 parent a7d2f3c commit f0238cf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/test/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,6 @@ fn test_deglob() {
13691369
{
13701370
wait_for_n_results!(1, results);
13711371
let response = json::parse(&results.lock().unwrap().remove(0)).unwrap();
1372-
println!("{}", response.pretty(2));
13731372
assert_eq!(response["id"], 100);
13741373
assert_eq!(response["result"][0]["title"], "Deglob Import");
13751374
assert_eq!(response["result"][0]["command"], "rls.deglobImports");
@@ -1403,7 +1402,6 @@ fn test_deglob() {
14031402
{
14041403
wait_for_n_results!(2, results);
14051404
let response = json::parse(&results.lock().unwrap().remove(0)).unwrap();
1406-
println!("{}", response.pretty(2));
14071405
assert_eq!(response["id"], 0x0100_0001);
14081406
assert_eq!(response["method"], "workspace/applyEdit");
14091407
let (key, changes) = response["params"]["edit"]["changes"].entries().next().unwrap();
@@ -1424,7 +1422,6 @@ fn test_deglob() {
14241422
assert_eq!(imports, vec!["Stdin", "Stdout"]);
14251423

14261424
let response = json::parse(&results.lock().unwrap().remove(0)).unwrap();
1427-
println!("{}", response.pretty(2));
14281425
assert_eq!(response["id"], 200);
14291426
assert!(response["result"].is_null());
14301427
}
@@ -1456,7 +1453,6 @@ fn test_deglob() {
14561453
{
14571454
wait_for_n_results!(1, results);
14581455
let response = json::parse(&results.lock().unwrap().remove(0)).unwrap();
1459-
println!("{}", response.pretty(2));
14601456
assert_eq!(response["id"], 0x0100_0002);
14611457
assert_eq!(response["method"], "workspace/applyEdit");
14621458
let (key, changes) = response["params"]["edit"]["changes"].entries().next().unwrap();

0 commit comments

Comments
 (0)