summaryrefslogtreecommitdiff
path: root/support/texlab/crates/test-utils/src/fixture.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/test-utils/src/fixture.rs')
-rw-r--r--support/texlab/crates/test-utils/src/fixture.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/texlab/crates/test-utils/src/fixture.rs b/support/texlab/crates/test-utils/src/fixture.rs
index 2935b4f519..1a5071b2db 100644
--- a/support/texlab/crates/test-utils/src/fixture.rs
+++ b/support/texlab/crates/test-utils/src/fixture.rs
@@ -1,6 +1,6 @@
use std::path::PathBuf;
-use base_db::{Owner, Workspace};
+use base_db::{util::LineCol, Owner, Workspace};
use rowan::{TextRange, TextSize};
use url::Url;
@@ -35,7 +35,7 @@ impl Fixture {
document.text.clone(),
language,
Owner::Client,
- TextSize::from(0),
+ LineCol { line: 0, col: 0 },
);
}