(FIX): Needed to include these for testing

This commit is contained in:
Hayden Hargreaves 2025-10-29 15:11:01 -07:00
parent 408fd5fc2e
commit 9d58f08984

View File

@ -69,7 +69,8 @@ void test_input(int argc, char **argv) {
void test_document_converter() { void test_document_converter() {
DocumentConverter dc("test/input.md"); DocumentConverter dc("test/input.md");
dc.Convert(); dc.ConvertWatcher();
} }
int main(int argc, char **argv) { test_document_converter(); } int main(int argc, char **argv) {
test_document_converter(); }