Skip to content

Commit

Permalink
fix: updated unit test expected outputs for remap transform err
Browse files Browse the repository at this point in the history
  • Loading branch information
brittonhayes committed Oct 16, 2024
1 parent 29d267a commit c993589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transforms/remap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ mod tests {
let err = remap(config).unwrap_err().to_string();
assert_eq!(
&err,
"must provide exactly one of `source` or `file` configuration"
"must provide exactly one of `source` or `file` or `files` configuration"
)
}

Expand All @@ -745,7 +745,7 @@ mod tests {
let err = remap(config).unwrap_err().to_string();
assert_eq!(
&err,
"must provide exactly one of `source` or `file` configuration"
"must provide exactly one of `source` or `file` or `files` configuration"
)
}

Expand Down

0 comments on commit c993589

Please sign in to comment.