Skip to content

Commit

Permalink
refactor: fix the format
Browse files Browse the repository at this point in the history
  • Loading branch information
ikremniou committed Dec 17, 2023
1 parent d476734 commit 2a3ce26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion tests/e2e_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ use std::{env, io::BufReader, path::PathBuf};
use unrparc::{extract_file, extract_filename, extract_glob, scan, RpaFile};

fn read_assets_rpa(name: &str) -> (Vec<RpaFile>, BufReader<std::fs::File>) {
let path: PathBuf = env::current_dir().unwrap()
let path: PathBuf = env::current_dir()
.unwrap()
.join("tests")
.join("assets")
.join(name);
Expand Down

0 comments on commit 2a3ce26

Please sign in to comment.