mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-03-15 06:55:34 +08:00
fish_tests.cpp: fixup: I didn't notice the comma here.
This commit is contained in:
parent
c2bc0c67f2
commit
6fa8b028fc
@ -1545,7 +1545,7 @@ static void test_lru() {
|
|||||||
auto commajoin = [](const std::vector<int> &vs) {
|
auto commajoin = [](const std::vector<int> &vs) {
|
||||||
wcstring ret;
|
wcstring ret;
|
||||||
for (int v : vs) {
|
for (int v : vs) {
|
||||||
ret.append(std::to_wstring(v));
|
append_format(ret, L"%d,", v);
|
||||||
}
|
}
|
||||||
if (!ret.empty()) ret.pop_back();
|
if (!ret.empty()) ret.pop_back();
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user