mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Improve formatting and layout of history path detection test
This commit is contained in:
parent
884eb2b198
commit
87dacc0e95
1 changed files with 9 additions and 3 deletions
|
@ -4378,9 +4378,15 @@ void history_tests_t::test_history_path_detection() {
|
|||
|
||||
// Expected sets of paths.
|
||||
wcstring_list_t expected[hist_size] = {
|
||||
{}, {filename}, {tmpdir + L"/" + filename}, {L"$HOME/" + filename}, {}, {L"~/" + filename},
|
||||
{}, {}, // we do not expand globs
|
||||
{},
|
||||
{}, // cmd0
|
||||
{filename}, // cmd1
|
||||
{tmpdir + L"/" + filename}, // cmd2
|
||||
{L"$HOME/" + filename}, // cmd3
|
||||
{}, // cmd4
|
||||
{L"~/" + filename}, // cmd5
|
||||
{}, // cmd6
|
||||
{}, // cmd7 - we do not expand globs
|
||||
{}, // cmd8
|
||||
};
|
||||
|
||||
size_t lap;
|
||||
|
|
Loading…
Reference in a new issue