summaryrefslogtreecommitdiff
path: root/support/texlab/crates/diagnostics/src/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/diagnostics/src/tests.rs')
-rw-r--r--support/texlab/crates/diagnostics/src/tests.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/support/texlab/crates/diagnostics/src/tests.rs b/support/texlab/crates/diagnostics/src/tests.rs
index b9eafc0284..539e3ba765 100644
--- a/support/texlab/crates/diagnostics/src/tests.rs
+++ b/support/texlab/crates/diagnostics/src/tests.rs
@@ -1,14 +1,12 @@
use std::borrow::Cow;
-use test_utils::fixture::Fixture;
-
use crate::{
types::{BibError, Diagnostic, DiagnosticData, TexError},
DiagnosticBuilder, DiagnosticManager, DiagnosticSource,
};
fn check(input: &str, expected_data: &[DiagnosticData]) {
- let fixture = Fixture::parse(input);
+ let fixture = test_utils::fixture::Fixture::parse(input);
let mut manager = DiagnosticManager::default();
let mut expected = DiagnosticBuilder::default();