aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-06 09:22:10 +0100
committerGitHub <[email protected]>2020-05-06 09:22:10 +0100
commitd81bf3772fa2802dbcb808f64835352519e832a3 (patch)
tree4797a973b944a831f5567953aa6c991f658d454b /crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
parent30eb458b4fa8adcecd8cbf731bd1cfa9a7a8b88b (diff)
parenteea431180eb5267928c8e0d4b8099ab1042e01d1 (diff)
Merge #4337
4337: Cleanup assists tests r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_assists/src/handlers/replace_unwrap_with_match.rs')
-rw-r--r--crates/ra_assists/src/handlers/replace_unwrap_with_match.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs b/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
index 62d4ea522..dcb471edb 100644
--- a/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
+++ b/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
@@ -63,7 +63,7 @@ pub(crate) fn replace_unwrap_with_match(ctx: AssistCtx) -> Option<Assist> {
63#[cfg(test)] 63#[cfg(test)]
64mod tests { 64mod tests {
65 use super::*; 65 use super::*;
66 use crate::helpers::{check_assist, check_assist_target}; 66 use crate::tests::{check_assist, check_assist_target};
67 67
68 #[test] 68 #[test]
69 fn test_replace_result_unwrap_with_match() { 69 fn test_replace_result_unwrap_with_match() {