diff --git a/tests/integration_test.rs b/tests/integration_test.rs index 375c383..e5123c7 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -7,11 +7,11 @@ use ggemtext::line::{ }; use gtk::glib::{TimeZone, Uri, UriFlags}; -use std::fs::read_to_string; +use std::fs; #[test] fn gemtext() { - match read_to_string("tests/integration_test.gmi") { + match fs::read_to_string("tests/integration_test.gmi") { Ok(gemtext) => { // Init tags collection let mut code_inline: Vec = Vec::new();