Skip to content

Commit

Permalink
ensure workdir is the same as the test name
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
jqnatividad committed Jun 8, 2023
1 parent ee31956 commit 95bc03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rename.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn rename() {

#[test]
fn rename_generic() {
let wrk = Workdir::new("rename");
let wrk = Workdir::new("rename_generic");
wrk.create(
"in.csv",
vec![
Expand Down Expand Up @@ -75,7 +75,7 @@ fn rename_noheaders() {

#[test]
fn rename_noheaders_generic() {
let wrk = Workdir::new("rename_noheaders");
let wrk = Workdir::new("rename_noheaders_generic");
wrk.create(
"in.csv",
vec![svec!["1", "b"], svec!["2", "a"], svec!["3", "d"]],
Expand Down

0 comments on commit 95bc03c

Please sign in to comment.