mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 20:47:44 +02:00
Fix typos and use more idiomatic assertions (#7755)
I have changed `assert!(a == b)` calls to `assert_eq!(a, b)`, which give better error messages. Similarly for `assert!(a != b)` and `assert_ne!(a, b)`. Basically all instances were comparing primitives (string slices or integers), so there is no loss of generality from special-case macros, I have also fixed a number of typos in comments, variable names, and a few user-facing messages.
This commit is contained in:
@ -16,7 +16,7 @@ fn while_auto_print_in_each_iteration() {
|
||||
cwd: ".",
|
||||
"mut total = 0; while $total < 2 { $total = $total + 1; echo 1 }"
|
||||
);
|
||||
// Note: nu! macro auto repalce "\n" and "\r\n" with ""
|
||||
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
||||
// so our output will be `11`
|
||||
// that's ok, our main concern is it auto print value in each iteration.
|
||||
assert_eq!(actual.out, "11");
|
||||
@ -28,7 +28,7 @@ fn while_break_on_external_failed() {
|
||||
cwd: ".",
|
||||
"mut total = 0; while $total < 2 { $total = $total + 1; echo 1; nu --testbin fail }"
|
||||
);
|
||||
// Note: nu! macro auto repalce "\n" and "\r\n" with ""
|
||||
// Note: nu! macro auto replace "\n" and "\r\n" with ""
|
||||
// so our output will be `1`
|
||||
assert_eq!(actual.out, "1");
|
||||
}
|
||||
|
Reference in New Issue
Block a user