We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d3fa9 commit 6eb474bCopy full SHA for 6eb474b
Makefile
@@ -17,7 +17,7 @@ fzytest: fzytest.o match.o choices.o
17
$(CC) $(CFLAGS) $(CCFLAGS) -o $@ $^
18
19
test: fzytest
20
- -$(DEBUGGER) ./fzytest
+ $(DEBUGGER) ./fzytest
21
22
fzy: fzy.o match.o tty.o choices.o
23
fzytest.c
@@ -102,7 +102,7 @@ void test_positions_4() {
102
103
void test_positions_5() {
104
size_t positions[3];
105
- match_positions("abc", "a a b c c", positions);
+ match_positions("abc", "a/a/b/c/c", positions);
106
assert(positions[0] == 2);
107
assert(positions[1] == 4);
108
assert(positions[2] == 6);
0 commit comments