From 1095829bdb28dedd371d9209604e849734a6b796 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 19 Jun 2019 12:09:35 +0200 Subject: [PATCH] Disable a spurious Racer test --- tests/client.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/client.rs b/tests/client.rs index 3668de4103e..3cbb84015c9 100644 --- a/tests/client.rs +++ b/tests/client.rs @@ -456,6 +456,11 @@ fn client_test_complete_self_crate_name() { assert_eq!(item.detail.unwrap(), "pub fn function() -> usize"); } +// Spurious in Rust CI, e.g. +// https://github.com/rust-lang/rust/pull/60730 +// https://github.com/rust-lang/rust/pull/61771 +// https://github.com/rust-lang/rust/pull/61932 +#[ignore] #[test] fn client_completion_suggests_arguments_in_statements() { let p = project("ws_with_test_dir")