summaryrefslogtreecommitdiff
path: root/src/unit_tests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/unit_tests.cc')
-rw-r--r--src/unit_tests.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unit_tests.cc b/src/unit_tests.cc
index 1294c0be..8d7fb908 100644
--- a/src/unit_tests.cc
+++ b/src/unit_tests.cc
@@ -77,7 +77,7 @@ void test_editor()
{
scoped_edition edition{editor};
editor.select(select_whole_buffer);
- editor.multi_select(std::bind(select_all_matches, _1, _2, Regex{"\\n\\h*"}));
+ editor.select(std::bind(select_all_matches, _1, _2, Regex{"\\n\\h*"}));
for (auto& sel : editor.selections())
{
kak_assert(buffer.byte_at(sel.min()) == '\n');