summaryrefslogtreecommitdiff
path: root/test/minibuffer.c
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-11-10 23:11:36 +0100
committerAlbert Cervin <albert@acervin.com>2024-11-10 23:11:36 +0100
commit8722f48831c385245f5f78462159d2785a2d4323 (patch)
treed235e157289354a0540d619f3072b9fb84921de2 /test/minibuffer.c
parent4764653ba333f015bc2f87fd2248aab6b6185868 (diff)
downloaddged-8722f48831c385245f5f78462159d2785a2d4323.tar.gz
dged-8722f48831c385245f5f78462159d2785a2d4323.tar.xz
dged-8722f48831c385245f5f78462159d2785a2d4323.zip
Render tabs using the correct tab width
Previously, the code assumed 4.
Diffstat (limited to 'test/minibuffer.c')
-rw-r--r--test/minibuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/minibuffer.c b/test/minibuffer.c
index b4f8c05..8d531c3 100644
--- a/test/minibuffer.c
+++ b/test/minibuffer.c
@@ -49,7 +49,7 @@ void test_minibuffer_echo(void) {
g_alloc = &alloc;
struct command_list *list =
- command_list_create(10, alloc_fn, 0, 0, "minibuffer");
+ command_list_create(10, alloc_fn, 0, 0, 4, "minibuffer");
init();
ASSERT(!minibuffer_displaying(),