Skip to content

Commit aa27cd7

Browse files
committed
Fix broken test path
1 parent 4820b9e commit aa27cd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/suite/cli_ui.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ fn rustup_ui_doc_text_tests() {
88
// Copy rustup-init to rustup so that the tests can run it.
99
fs::copy(rustup_init, &rustup).unwrap();
1010
t.register_bin("rustup", &rustup);
11-
t.case("tests/cli-ui/rustup/*.toml");
11+
t.case("tests/suite/cli-ui/rustup/*.toml");
1212
#[cfg(target_os = "windows")]
1313
{
1414
// On windows, we don't have man command, so skip the test.
15-
t.skip("tests/cli-ui/rustup/rustup_man_cmd_help_flag_stdout.toml");
15+
t.skip("tests/suite/cli-ui/rustup/rustup_man_cmd_help_flag_stdout.toml");
1616
}
1717
}
1818

@@ -53,6 +53,6 @@ fn rustup_init_ui_doc_text_tests() {
5353
.unwrap();
5454

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

0 commit comments

Comments
 (0)