summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--fzytest.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ae88261..02c8f07 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ fzytest: fzytest.o match.o choices.o
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
test: fzytest
- -$(DEBUGGER) ./fzytest
+ $(DEBUGGER) ./fzytest
fzy: fzy.o match.o tty.o choices.o
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
diff --git a/fzytest.c b/fzytest.c
index 828fa1b..0b3b63a 100644
--- a/fzytest.c
+++ b/fzytest.c
@@ -102,7 +102,7 @@ void test_positions_4() {
void test_positions_5() {
size_t positions[3];
- match_positions("abc", "a a b c c", positions);
+ match_positions("abc", "a/a/b/c/c", positions);
assert(positions[0] == 2);
assert(positions[1] == 4);
assert(positions[2] == 6);