diff options
author | Paul Daniel Faria <[email protected]> | 2020-06-24 13:50:59 +0100 |
---|---|---|
committer | Paul Daniel Faria <[email protected]> | 2020-06-24 13:50:59 +0100 |
commit | 43c6f6c039985923c3039808834892206c81684d (patch) | |
tree | bd56a25593f5c5e96b014dd81da136f52130d93b /crates | |
parent | dfd79907b80e1a93b93e99aaf4d7af2a84c1c59f (diff) |
Fix formatting issue with glob shadow test
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_hir_def/src/nameres/tests/globs.rs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/crates/ra_hir_def/src/nameres/tests/globs.rs b/crates/ra_hir_def/src/nameres/tests/globs.rs index f117b0362..2f440975a 100644 --- a/crates/ra_hir_def/src/nameres/tests/globs.rs +++ b/crates/ra_hir_def/src/nameres/tests/globs.rs | |||
@@ -256,23 +256,23 @@ fn glob_shadowed_def() { | |||
256 | "###, | 256 | "###, |
257 | ); | 257 | ); |
258 | assert_snapshot!(map, @r###" | 258 | assert_snapshot!(map, @r###" |
259 | crate | 259 | ⋮crate |
260 | Bar: t v | 260 | ⋮Bar: t v |
261 | bar: t | 261 | ⋮bar: t |
262 | baz: t | 262 | ⋮baz: t |
263 | foo: t | 263 | ⋮foo: t |
264 | 264 | ⋮ | |
265 | crate::bar | 265 | ⋮crate::bar |
266 | baz: t | 266 | ⋮baz: t |
267 | 267 | ⋮ | |
268 | crate::bar::baz | 268 | ⋮crate::bar::baz |
269 | Bar: t v | 269 | ⋮Bar: t v |
270 | 270 | ⋮ | |
271 | crate::foo | 271 | ⋮crate::foo |
272 | baz: t | 272 | ⋮baz: t |
273 | 273 | ⋮ | |
274 | crate::foo::baz | 274 | ⋮crate::foo::baz |
275 | Foo: t v | 275 | ⋮Foo: t v |
276 | "### | 276 | "### |
277 | ); | 277 | ); |
278 | } | 278 | } |