fish_tests.cpp: fixup: I didn't notice the comma here.

This commit is contained in:
Aaron Gyes 2019-02-18 23:19:57 -08:00
parent c2bc0c67f2
commit 6fa8b028fc

View File

@ -1545,7 +1545,7 @@ static void test_lru() {
auto commajoin = [](const std::vector<int> &vs) {
wcstring ret;
for (int v : vs) {
ret.append(std::to_wstring(v));
append_format(ret, L"%d,", v);
}
if (!ret.empty()) ret.pop_back();
return ret;