mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-04 15:51:15 -03:00
fish_tests.cpp: fixup: I didn't notice the comma here.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user