Add threeparttable to footnote
diff --git a/tests/visual_tests/footnote_latex.Rmd b/tests/visual_tests/footnote_latex.Rmd
index db51f11..b2f9e5e 100644
--- a/tests/visual_tests/footnote_latex.Rmd
+++ b/tests/visual_tests/footnote_latex.Rmd
@@ -26,5 +26,6 @@
 ```{r}
 mtcars[1:5, 1:5] %>%
   kable("latex", booktabs = T) %>%
-  footnote(general = c("Note 1", "Note 2"), general_title = "")
+  footnote(number = c("For this particular use (i.e. a general note) the comments above are adequate. For proper footnotes in tables you should probably use the threeparttable package. You should also probably be using the booktabs package. See this answer to this question", "Note 2"),
+           number_title = "Note: ", threeparttable = T, footnote_as_chunk = T)
 ```