diff options
-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 | } |