Move 'nth' into 'select' (#4385)

This commit is contained in:
JT
2022-02-09 09:59:40 -05:00
committed by GitHub
parent 43850bf20e
commit 5a1d81221f
18 changed files with 190 additions and 259 deletions

View File

@ -108,7 +108,7 @@ fn fetches_more_than_one_column_path() {
arepas = 1
[[fortune_tellers]]
name = "Jonathan Turner"
name = "JT"
arepas = 1
[[fortune_tellers]]
@ -126,7 +126,7 @@ fn fetches_more_than_one_column_path() {
"#
));
assert_eq!(actual.out, "Jonathan Turner");
assert_eq!(actual.out, "JT");
})
}