Jonathan Turner afce2fd0f9
Revert "Display rows in the same table regardless of their column order given they are equal. (#1392)" (#1401)
This reverts commit 4fd99742042233f001d9d1d34e85cd804669effa.
2020-02-17 17:34:37 -08:00

11 lines
187 B
Rust

mod commands;
use nu_test_support::nu;
#[test]
fn doesnt_break_on_utf8() {
let actual = nu!(cwd: ".", "echo ö");
assert_eq!(actual, "ö", "'{}' should contain ö", actual);
}