From 321c42876569b3de652d69ff4ad2cbff238aa7b3 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 20 Oct 2024 00:31:16 +0300 Subject: [PATCH] update namespace --- tests/integration_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();