Skip to content

Commit

Permalink
Fix broken test path
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-rustin committed Feb 28, 2023
1 parent 211bbc2 commit 5d2cb3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/suite/cli_ui.rs
Expand Up @@ -8,7 +8,7 @@ fn rustup_ui_doc_text_tests() {
// Copy rustup-init to rustup so that the tests can run it.
fs::copy(rustup_init, &rustup).unwrap();
t.register_bin("rustup", &rustup);
t.case("tests/cli-ui/rustup/*.toml");
t.case("tests/suite/cli-ui/rustup/*.toml");
#[cfg(target_os = "windows")]
{
// On windows, we don't have man command, so skip the test.
Expand Down Expand Up @@ -53,6 +53,6 @@ fn rustup_init_ui_doc_text_tests() {
.unwrap();

// Make sure that the help output of rustup-init and rustup-init.sh are the same.
assert!(rustup_init_help_std_out == rustup_init_sh_help_std_out)
assert_eq!(rustup_init_help_std_out, rustup_init_sh_help_std_out)
}
}

0 comments on commit 5d2cb3f

Please sign in to comment.