diff options
author | Aleksey Kladov <[email protected]> | 2020-06-22 16:30:23 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-06-22 23:14:44 +0100 |
commit | 6a6098d4c31f6b54c8768e32f24182645ac077d6 (patch) | |
tree | 66879957613620b5c2788f9d98ac36fd24a603d6 /crates/ra_hir_ty/src | |
parent | 5a0331e5575034a145956f76316ee0fcdf72077e (diff) |
Remove RelativePathBuf from fixture
The paths in fixture are not really relative (the default one is
`/main.rs`), so it doesn't make sense to use `RelativePathBuf` here.
Diffstat (limited to 'crates/ra_hir_ty/src')
-rw-r--r-- | crates/ra_hir_ty/src/tests/method_resolution.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_ty/src/tests/method_resolution.rs b/crates/ra_hir_ty/src/tests/method_resolution.rs index 804297315..a98efb1cc 100644 --- a/crates/ra_hir_ty/src/tests/method_resolution.rs +++ b/crates/ra_hir_ty/src/tests/method_resolution.rs | |||
@@ -933,7 +933,7 @@ fn method_resolution_overloaded_method() { | |||
933 | test_utils::mark::check!(impl_self_type_match_without_receiver); | 933 | test_utils::mark::check!(impl_self_type_match_without_receiver); |
934 | let t = type_at( | 934 | let t = type_at( |
935 | r#" | 935 | r#" |
936 | //- main.rs | 936 | //- /main.rs |
937 | struct Wrapper<T>(T); | 937 | struct Wrapper<T>(T); |
938 | struct Foo<T>(T); | 938 | struct Foo<T>(T); |
939 | struct Bar<T>(T); | 939 | struct Bar<T>(T); |