diff options
author | Aleksey Kladov <[email protected]> | 2020-03-26 14:44:31 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-26 14:44:31 +0000 |
commit | b7aaefb5a4a44985dc80a502209ea3f08a543b90 (patch) | |
tree | cedbc35ee1c618d44265e67e557e225aa4885630 /crates/ra_db/src | |
parent | ece8fa81bbff7cad8da2e28fb810699ae4045a16 (diff) |
Minor incremental tests cleanup
Diffstat (limited to 'crates/ra_db/src')
-rw-r--r-- | crates/ra_db/src/fixture.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_db/src/fixture.rs b/crates/ra_db/src/fixture.rs index 3464f43df..5e3e9203c 100644 --- a/crates/ra_db/src/fixture.rs +++ b/crates/ra_db/src/fixture.rs | |||
@@ -28,9 +28,9 @@ pub trait WithFixture: Default + SourceDatabaseExt + 'static { | |||
28 | db | 28 | db |
29 | } | 29 | } |
30 | 30 | ||
31 | fn with_position(fixture: &str) -> (Self, FilePosition) { | 31 | fn with_position(ra_fixture: &str) -> (Self, FilePosition) { |
32 | let mut db = Self::default(); | 32 | let mut db = Self::default(); |
33 | let pos = with_files(&mut db, fixture); | 33 | let pos = with_files(&mut db, ra_fixture); |
34 | (db, pos.unwrap()) | 34 | (db, pos.unwrap()) |
35 | } | 35 | } |
36 | 36 | ||