aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/fish_tests.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-02 16:43:37 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-08 13:55:49 -0700
commita3f8e27bf8487cf2e74e66cabbd4b1ab6d8294a8 (patch)
tree8378e77979bf57666ff5576f49e812f733c75572 /src/fish_tests.cpp
parentb55c13f275519d68ea24ecd08d4bd0f426b94722 (diff)
rename ACCEPT_INCOMPLETE to FOR_COMPLETIONS, which is clearer
Diffstat (limited to 'src/fish_tests.cpp')
-rw-r--r--src/fish_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fish_tests.cpp b/src/fish_tests.cpp
index baa6e53a..157ee5ab 100644
--- a/src/fish_tests.cpp
+++ b/src/fish_tests.cpp
@@ -1435,7 +1435,7 @@ static void test_expand()
expand_test(L"a*", EXPAND_SKIP_WILDCARDS, L"a*", 0,
L"Cannot skip wildcard expansion");
- expand_test(L"/bin/l\\0", ACCEPT_INCOMPLETE, 0,
+ expand_test(L"/bin/l\\0", FOR_COMPLETIONS, 0,
L"Failed to handle null escape in expansion");
expand_test(L"foo\\$bar", EXPAND_SKIP_VARIABLES, L"foo$bar", 0,