mirror of
https://github.com/nushell/nushell.git
synced 2025-08-18 16:58:51 +02:00
refactor: change column names from 'Column*' to 'column*' (#4556)
This commit is contained in:
@@ -10,10 +10,10 @@ fn by_column() {
|
||||
| skip 1
|
||||
| first 4
|
||||
| split column "="
|
||||
| sort-by Column1
|
||||
| sort-by column1
|
||||
| skip 1
|
||||
| first 1
|
||||
| get Column1
|
||||
| get column1
|
||||
| str trim
|
||||
"#
|
||||
));
|
||||
@@ -36,7 +36,7 @@ fn by_invalid_column() {
|
||||
| sort-by ColumnThatDoesNotExist
|
||||
| skip 1
|
||||
| first 1
|
||||
| get Column1
|
||||
| get column1
|
||||
| str trim
|
||||
"#
|
||||
));
|
||||
|
Reference in New Issue
Block a user