update namespace

This commit is contained in:
yggverse 2024-10-20 00:31:16 +03:00
parent 6f3d4e0f58
commit 321c428765

View file

@ -7,11 +7,11 @@ use ggemtext::line::{
}; };
use gtk::glib::{TimeZone, Uri, UriFlags}; use gtk::glib::{TimeZone, Uri, UriFlags};
use std::fs::read_to_string; use std::fs;
#[test] #[test]
fn gemtext() { fn gemtext() {
match read_to_string("tests/integration_test.gmi") { match fs::read_to_string("tests/integration_test.gmi") {
Ok(gemtext) => { Ok(gemtext) => {
// Init tags collection // Init tags collection
let mut code_inline: Vec<Inline> = Vec::new(); let mut code_inline: Vec<Inline> = Vec::new();