Skip to content

Commit a2866e3

Browse files
committed
Auto merge of #30121 - steveklabnik:fix_trpl_tests, r=alexcrichton
In #29932, I moved the location of TRPL, but I missed making the changes in mk/tests.mk. This led to #30088 landing with a broken example. As such, #30113 will need to land before this.
2 parents 7269f0e + 1a2d1b8 commit a2866e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mk/tests.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ endef
163163

164164
$(foreach doc,$(DOCS), \
165165
$(eval $(call DOCTEST,md-$(doc),$(S)src/doc/$(doc).md)))
166-
$(foreach file,$(wildcard $(S)src/doc/trpl/*.md), \
167-
$(eval $(call DOCTEST,$(file:$(S)src/doc/trpl/%.md=trpl-%),$(file))))
166+
$(foreach file,$(wildcard $(S)src/doc/book/*.md), \
167+
$(eval $(call DOCTEST,$(file:$(S)src/doc/book/%.md=book-%),$(file))))
168168
$(foreach file,$(wildcard $(S)src/doc/nomicon/*.md), \
169169
$(eval $(call DOCTEST,$(file:$(S)src/doc/nomicon/%.md=nomicon-%),$(file))))
170170
######################################################################

0 commit comments

Comments
 (0)