Skip to content

Commit

Permalink
Update tests for formatting changes due to anyhow changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jan 13, 2020
1 parent 77ee608 commit dafacbb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/testsuite/profile_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ fn profile_config_error_paths() {
.with_status(101)
.with_stderr(
"\
[ERROR] error in [..]/foo/.cargo/config: \
could not load config key `profile.dev`: \
error in [..]/home/.cargo/config: \
`profile.dev.rpath` expected true/false, but found a string
[ERROR] error in [..]/foo/.cargo/config: could not load config key `profile.dev`
Caused by:
error in [..]/home/.cargo/config: `profile.dev.rpath` expected true/false, but found a string
",
)
.run();
Expand Down Expand Up @@ -181,10 +181,10 @@ fn profile_config_syntax_errors() {
.with_status(101)
.with_stderr(
"\
[ERROR] error in [..]/foo/.cargo/config: \
could not load config key `profile.dev`: \
error in [..]/foo/.cargo/config: \
`profile.dev.codegen-units` expected an integer, but found a string
[ERROR] error in [..]/.cargo/config: could not load config key `profile.dev`
Caused by:
error in [..]/foo/.cargo/config: `profile.dev.codegen-units` expected an integer, but found a string
",
)
.run();
Expand Down

0 comments on commit dafacbb

Please sign in to comment.