diff --git a/tests/test_arch.rs b/tests/test_arch.rs index f5bc3b1e4..d2ec138d9 100644 --- a/tests/test_arch.rs +++ b/tests/test_arch.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_arch() { diff --git a/tests/test_base32.rs b/tests/test_base32.rs index e8785dbd3..d3527d26a 100644 --- a/tests/test_base32.rs +++ b/tests/test_base32.rs @@ -6,7 +6,7 @@ // that was distributed with this source code. // -use common::util::*; +use crate::common::util::*; #[test] fn test_encode() { diff --git a/tests/test_base64.rs b/tests/test_base64.rs index c1b87abcd..6bc0436c5 100644 --- a/tests/test_base64.rs +++ b/tests/test_base64.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_encode() { diff --git a/tests/test_basename.rs b/tests/test_basename.rs index 380935802..fa599644d 100644 --- a/tests/test_basename.rs +++ b/tests/test_basename.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_directory() { diff --git a/tests/test_cat.rs b/tests/test_cat.rs index 26e8a3767..192f7fbbb 100644 --- a/tests/test_cat.rs +++ b/tests/test_cat.rs @@ -2,7 +2,7 @@ extern crate tempdir; #[cfg(unix)] extern crate unix_socket; -use common::util::*; +use crate::common::util::*; #[test] fn test_output_multi_files_print_all_chars() { diff --git a/tests/test_chgrp.rs b/tests/test_chgrp.rs index e950dff79..3bd0c69e5 100644 --- a/tests/test_chgrp.rs +++ b/tests/test_chgrp.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use rust_users::*; #[test] diff --git a/tests/test_chmod.rs b/tests/test_chmod.rs index 4b942c506..612f0860f 100644 --- a/tests/test_chmod.rs +++ b/tests/test_chmod.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::fs::{metadata, set_permissions, OpenOptions}; use std::os::unix::fs::{OpenOptionsExt, PermissionsExt}; use std::sync::Mutex; diff --git a/tests/test_chown.rs b/tests/test_chown.rs index b034279bf..fb487cc16 100644 --- a/tests/test_chown.rs +++ b/tests/test_chown.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; extern crate chown; // pub use self::uu_chown::*; diff --git a/tests/test_cksum.rs b/tests/test_cksum.rs index d54f3defc..d0bf5ffc8 100644 --- a/tests/test_cksum.rs +++ b/tests/test_cksum.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_single_file() { diff --git a/tests/test_comm.rs b/tests/test_comm.rs index 33d9a0a84..23aeb8309 100644 --- a/tests/test_comm.rs +++ b/tests/test_comm.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn ab_no_args() { diff --git a/tests/test_cp.rs b/tests/test_cp.rs index a878131d9..5b24644d2 100644 --- a/tests/test_cp.rs +++ b/tests/test_cp.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[cfg(not(windows))] use std::fs::set_permissions; diff --git a/tests/test_cut.rs b/tests/test_cut.rs index 7badf493a..fc0f1b1f9 100644 --- a/tests/test_cut.rs +++ b/tests/test_cut.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; static INPUT: &'static str = "lists.txt"; diff --git a/tests/test_date.rs b/tests/test_date.rs index 5d0446b8d..0837878b2 100644 --- a/tests/test_date.rs +++ b/tests/test_date.rs @@ -1,7 +1,7 @@ extern crate regex; use self::regex::Regex; -use common::util::*; +use crate::common::util::*; #[test] fn test_date_email() { diff --git a/tests/test_df.rs b/tests/test_df.rs index 32bb0f481..f79d1beb5 100644 --- a/tests/test_df.rs +++ b/tests/test_df.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_df_compatible_no_size_arg() { diff --git a/tests/test_dircolors.rs b/tests/test_dircolors.rs index e35ee16de..f28074075 100644 --- a/tests/test_dircolors.rs +++ b/tests/test_dircolors.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; extern crate dircolors; use self::dircolors::{guess_syntax, OutputFmt, StrUtils}; diff --git a/tests/test_dirname.rs b/tests/test_dirname.rs index dbb8807fc..bcb4378d6 100644 --- a/tests/test_dirname.rs +++ b/tests/test_dirname.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_path_with_trailing_slashes() { diff --git a/tests/test_du.rs b/tests/test_du.rs index 8189fa2c5..c9704a658 100644 --- a/tests/test_du.rs +++ b/tests/test_du.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; const SUB_DIR: &str = "subdir/deeper"; const SUB_DIR_LINKS: &str = "subdir/links"; diff --git a/tests/test_echo.rs b/tests/test_echo.rs index 1b3517bdb..2d073d60b 100644 --- a/tests/test_echo.rs +++ b/tests/test_echo.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_default() { diff --git a/tests/test_env.rs b/tests/test_env.rs index 8b9da37fb..fde35e726 100644 --- a/tests/test_env.rs +++ b/tests/test_env.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_env_help() { diff --git a/tests/test_expand.rs b/tests/test_expand.rs index a8474e9b3..121ccccec 100644 --- a/tests/test_expand.rs +++ b/tests/test_expand.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_with_tab() { diff --git a/tests/test_expr.rs b/tests/test_expr.rs index be1d6c1e8..bb0760676 100644 --- a/tests/test_expr.rs +++ b/tests/test_expr.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_simple_arithmetic() { diff --git a/tests/test_factor.rs b/tests/test_factor.rs index a6b853064..160a9cbd2 100644 --- a/tests/test_factor.rs +++ b/tests/test_factor.rs @@ -7,7 +7,7 @@ // that was distributed with this source code. // -use common::util::*; +use crate::common::util::*; #[path = "../src/uu/factor/sieve.rs"] mod sieve; diff --git a/tests/test_false.rs b/tests/test_false.rs index 1de4c1565..bbabc7a52 100644 --- a/tests/test_false.rs +++ b/tests/test_false.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_exit_code() { diff --git a/tests/test_fmt.rs b/tests/test_fmt.rs index bf18b4534..e7990a760 100644 --- a/tests/test_fmt.rs +++ b/tests/test_fmt.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_fmt() { diff --git a/tests/test_fold.rs b/tests/test_fold.rs index 9b8c52d78..57f90cee0 100644 --- a/tests/test_fold.rs +++ b/tests/test_fold.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_default_80_column_wrap() { diff --git a/tests/test_hashsum.rs b/tests/test_hashsum.rs index 85f21a358..af4021af4 100644 --- a/tests/test_hashsum.rs +++ b/tests/test_hashsum.rs @@ -8,7 +8,7 @@ macro_rules! test_digest { ($($id:ident $t:ident $size:expr)*) => ($( mod $id { - use::common::util::*; + use crate::common::util::*; static DIGEST_ARG: &'static str = concat!("--", stringify!($t)); static BITS_ARG: &'static str = concat!("--bits=", stringify!($size)); static EXPECTED_FILE: &'static str = concat!(stringify!($id), ".expected"); diff --git a/tests/test_head.rs b/tests/test_head.rs index 4dc34715c..999b44267 100644 --- a/tests/test_head.rs +++ b/tests/test_head.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; static INPUT: &'static str = "lorem_ipsum.txt"; diff --git a/tests/test_hostname.rs b/tests/test_hostname.rs index 4178dafc7..c5ffc5ff1 100644 --- a/tests/test_hostname.rs +++ b/tests/test_hostname.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_hostname() { diff --git a/tests/test_id.rs b/tests/test_id.rs index fe3706d30..822c49560 100644 --- a/tests/test_id.rs +++ b/tests/test_id.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_id() { diff --git a/tests/test_install.rs b/tests/test_install.rs index a9f126fff..e9e70bd93 100644 --- a/tests/test_install.rs +++ b/tests/test_install.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::os::unix::fs::PermissionsExt; #[test] diff --git a/tests/test_join.rs b/tests/test_join.rs index d90103b32..b0311df84 100644 --- a/tests/test_join.rs +++ b/tests/test_join.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn empty_files() { diff --git a/tests/test_link.rs b/tests/test_link.rs index 62460e985..381ea168a 100644 --- a/tests/test_link.rs +++ b/tests/test_link.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_link_existing_file() { diff --git a/tests/test_ln.rs b/tests/test_ln.rs index f7ccb9cd2..5ea81579a 100644 --- a/tests/test_ln.rs +++ b/tests/test_ln.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::path::PathBuf; #[test] diff --git a/tests/test_ls.rs b/tests/test_ls.rs index 8827369a0..18bd66d2e 100644 --- a/tests/test_ls.rs +++ b/tests/test_ls.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_ls_ls() { diff --git a/tests/test_mkdir.rs b/tests/test_mkdir.rs index 67ccd7ca3..70e4e414c 100644 --- a/tests/test_mkdir.rs +++ b/tests/test_mkdir.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; static TEST_DIR1: &'static str = "mkdir_test1"; static TEST_DIR2: &'static str = "mkdir_test2"; diff --git a/tests/test_mktemp.rs b/tests/test_mktemp.rs index 3b3b8d34f..722cd8dbc 100644 --- a/tests/test_mktemp.rs +++ b/tests/test_mktemp.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; extern crate tempdir; use self::tempdir::TempDir; diff --git a/tests/test_more.rs b/tests/test_more.rs index 9d4835769..3b7cfa9a8 100644 --- a/tests/test_more.rs +++ b/tests/test_more.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_more_no_arg() { diff --git a/tests/test_mv.rs b/tests/test_mv.rs index 3ad8dc28c..3fde65f99 100644 --- a/tests/test_mv.rs +++ b/tests/test_mv.rs @@ -2,7 +2,7 @@ extern crate filetime; extern crate time; use self::filetime::*; -use common::util::*; +use crate::common::util::*; #[test] fn test_mv_rename_dir() { diff --git a/tests/test_nl.rs b/tests/test_nl.rs index 4ecc5cc03..fca73c37b 100644 --- a/tests/test_nl.rs +++ b/tests/test_nl.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_stdin_nonewline() { diff --git a/tests/test_numfmt.rs b/tests/test_numfmt.rs index c8b734970..3aa7ab53b 100644 --- a/tests/test_numfmt.rs +++ b/tests/test_numfmt.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_from_si() { diff --git a/tests/test_od.rs b/tests/test_od.rs index a8a721fcf..f3b766c26 100644 --- a/tests/test_od.rs +++ b/tests/test_od.rs @@ -1,7 +1,7 @@ extern crate unindent; use self::unindent::*; -use common::util::*; +use crate::common::util::*; use std::env; use std::fs::remove_file; use std::fs::File; diff --git a/tests/test_paste.rs b/tests/test_paste.rs index 70d4ab275..27de0b445 100644 --- a/tests/test_paste.rs +++ b/tests/test_paste.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_combine_pairs_of_lines() { diff --git a/tests/test_pathchk.rs b/tests/test_pathchk.rs index c471f18d5..bdce377b3 100644 --- a/tests/test_pathchk.rs +++ b/tests/test_pathchk.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_default_mode() { diff --git a/tests/test_pinky.rs b/tests/test_pinky.rs index 1156d7857..c8e8334ab 100644 --- a/tests/test_pinky.rs +++ b/tests/test_pinky.rs @@ -1,6 +1,6 @@ extern crate uucore; -use common::util::*; +use crate::common::util::*; use self::uucore::entries::{Locate, Passwd}; diff --git a/tests/test_printenv.rs b/tests/test_printenv.rs index 1b617d0b2..9d90051ea 100644 --- a/tests/test_printenv.rs +++ b/tests/test_printenv.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::env; #[test] diff --git a/tests/test_printf.rs b/tests/test_printf.rs index 522da18f9..1e3e21d0c 100644 --- a/tests/test_printf.rs +++ b/tests/test_printf.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn basic_literal() { diff --git a/tests/test_ptx.rs b/tests/test_ptx.rs index 09ebcff1c..77117c5c0 100644 --- a/tests/test_ptx.rs +++ b/tests/test_ptx.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn gnu_ext_disabled_roff_no_ref() { diff --git a/tests/test_pwd.rs b/tests/test_pwd.rs index ff3c0ed54..aecb700da 100644 --- a/tests/test_pwd.rs +++ b/tests/test_pwd.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_default() { diff --git a/tests/test_readlink.rs b/tests/test_readlink.rs index 35281fde7..84747b24c 100644 --- a/tests/test_readlink.rs +++ b/tests/test_readlink.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; static GIBBERISH: &'static str = "supercalifragilisticexpialidocious"; diff --git a/tests/test_realpath.rs b/tests/test_realpath.rs index 6855ceb04..1d5b67e68 100644 --- a/tests/test_realpath.rs +++ b/tests/test_realpath.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_current_directory() { diff --git a/tests/test_rm.rs b/tests/test_rm.rs index 9757481c5..88e70946a 100644 --- a/tests/test_rm.rs +++ b/tests/test_rm.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_rm_one_file() { diff --git a/tests/test_rmdir.rs b/tests/test_rmdir.rs index 9e54fe941..5f87b5af6 100644 --- a/tests/test_rmdir.rs +++ b/tests/test_rmdir.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_rmdir_empty_directory_no_parents() { diff --git a/tests/test_seq.rs b/tests/test_seq.rs index ad272ce3d..440a2bc98 100644 --- a/tests/test_seq.rs +++ b/tests/test_seq.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_count_up() { diff --git a/tests/test_sort.rs b/tests/test_sort.rs index d40a8fe95..d3a4e6397 100644 --- a/tests/test_sort.rs +++ b/tests/test_sort.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_numeric_floats_and_ints() { diff --git a/tests/test_split.rs b/tests/test_split.rs index bb66735a4..69a15d807 100644 --- a/tests/test_split.rs +++ b/tests/test_split.rs @@ -3,7 +3,7 @@ extern crate regex; use self::rand::{thread_rng, Rng}; use self::regex::Regex; -use common::util::*; +use crate::common::util::*; use std::fs::{read_dir, File}; use std::io::Write; use std::path::Path; diff --git a/tests/test_stat.rs b/tests/test_stat.rs index 287561f6e..225ea52cd 100644 --- a/tests/test_stat.rs +++ b/tests/test_stat.rs @@ -1,6 +1,6 @@ extern crate regex; -use common::util::*; +use crate::common::util::*; extern crate stat; pub use self::stat::*; diff --git a/tests/test_stdbuf.rs b/tests/test_stdbuf.rs index 0d8d667ff..9adb0cfda 100644 --- a/tests/test_stdbuf.rs +++ b/tests/test_stdbuf.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_stdbuf_unbuffered_stdout() { diff --git a/tests/test_sum.rs b/tests/test_sum.rs index 8d6d38801..83cf689ac 100644 --- a/tests/test_sum.rs +++ b/tests/test_sum.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_bsd_single_file() { diff --git a/tests/test_tac.rs b/tests/test_tac.rs index 85c3c21b9..d46f9aec6 100644 --- a/tests/test_tac.rs +++ b/tests/test_tac.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_stdin_default() { diff --git a/tests/test_tail.rs b/tests/test_tail.rs index 6b218e58b..824071190 100644 --- a/tests/test_tail.rs +++ b/tests/test_tail.rs @@ -1,7 +1,7 @@ extern crate tail; use self::tail::parse_size; -use common::util::*; +use crate::common::util::*; use std::char::from_digit; use std::io::Write; use std::process::{Command, Stdio}; diff --git a/tests/test_test.rs b/tests/test_test.rs index 6fb0fa99b..4b9a9ff55 100644 --- a/tests/test_test.rs +++ b/tests/test_test.rs @@ -7,7 +7,7 @@ // file that was distributed with this source code. // -use common::util::*; +use crate::common::util::*; #[test] fn test_op_prec_and_or_1() { diff --git a/tests/test_touch.rs b/tests/test_touch.rs index a7110ab37..84263376a 100644 --- a/tests/test_touch.rs +++ b/tests/test_touch.rs @@ -3,7 +3,7 @@ use self::touch::filetime::{self, FileTime}; extern crate time; -use common::util::*; +use crate::common::util::*; fn get_file_times(at: &AtPath, path: &str) -> (FileTime, FileTime) { let m = at.metadata(path); diff --git a/tests/test_tr.rs b/tests/test_tr.rs index b41ed358f..06cf88ff6 100644 --- a/tests/test_tr.rs +++ b/tests/test_tr.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_toupper() { diff --git a/tests/test_true.rs b/tests/test_true.rs index 66f0c8c4c..1d8622c96 100644 --- a/tests/test_true.rs +++ b/tests/test_true.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_exit_code() { diff --git a/tests/test_truncate.rs b/tests/test_truncate.rs index 11d3dc829..7bb171386 100644 --- a/tests/test_truncate.rs +++ b/tests/test_truncate.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::io::{Seek, SeekFrom, Write}; static TFILE1: &'static str = "truncate_test_1"; diff --git a/tests/test_tsort.rs b/tests/test_tsort.rs index b2c3dc613..c743868ec 100644 --- a/tests/test_tsort.rs +++ b/tests/test_tsort.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_sort_call_graph() { diff --git a/tests/test_uname.rs b/tests/test_uname.rs index 65883ccfc..c0f5632dc 100644 --- a/tests/test_uname.rs +++ b/tests/test_uname.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_uname_compatible() { diff --git a/tests/test_unexpand.rs b/tests/test_unexpand.rs index 00a2d5307..93cc42d90 100644 --- a/tests/test_unexpand.rs +++ b/tests/test_unexpand.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn unexpand_init_0() { diff --git a/tests/test_uniq.rs b/tests/test_uniq.rs index 8713ed7ad..aa2f8a93f 100644 --- a/tests/test_uniq.rs +++ b/tests/test_uniq.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; static INPUT: &'static str = "sorted.txt"; static SKIP_CHARS: &'static str = "skip-chars.txt"; diff --git a/tests/test_unlink.rs b/tests/test_unlink.rs index df7856905..daac6d3b3 100644 --- a/tests/test_unlink.rs +++ b/tests/test_unlink.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_unlink_file() { diff --git a/tests/test_uptime.rs b/tests/test_uptime.rs index b2d5c8a2f..b890ff807 100644 --- a/tests/test_uptime.rs +++ b/tests/test_uptime.rs @@ -1,6 +1,6 @@ extern crate regex; use self::regex::Regex; -use common::util::*; +use crate::common::util::*; #[test] fn test_uptime() { diff --git a/tests/test_users.rs b/tests/test_users.rs index da2e85a79..cb444b8be 100644 --- a/tests/test_users.rs +++ b/tests/test_users.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::env; #[test] diff --git a/tests/test_wc.rs b/tests/test_wc.rs index a0549fe27..43dbbdb15 100644 --- a/tests/test_wc.rs +++ b/tests/test_wc.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; #[test] fn test_stdin_default() { diff --git a/tests/test_who.rs b/tests/test_who.rs index fb667a9ac..89b7cec93 100644 --- a/tests/test_who.rs +++ b/tests/test_who.rs @@ -1,5 +1,5 @@ #[cfg(target_os = "linux")] -use common::util::*; +use crate::common::util::*; #[cfg(target_os = "linux")] #[test] diff --git a/tests/test_whoami.rs b/tests/test_whoami.rs index 1a95f5274..a739add61 100644 --- a/tests/test_whoami.rs +++ b/tests/test_whoami.rs @@ -1,4 +1,4 @@ -use common::util::*; +use crate::common::util::*; use std::env; #[test]