diff --git a/tests/testsuite/markdown/footnotes/expected/footnotes.html b/tests/testsuite/markdown/footnotes/expected/footnotes.html
index 84b16975..28c3d94e 100644
--- a/tests/testsuite/markdown/footnotes/expected/footnotes.html
+++ b/tests/testsuite/markdown/footnotes/expected/footnotes.html
@@ -5,6 +5,8 @@
Footnote with multiple paragraphs
Footnote name with wacky characters
Testing when referring to something earlier.
+Footnote that is defined multiple times.
+And another that references the duplicate again.
\ No newline at end of file
diff --git a/tests/testsuite/markdown/footnotes/src/footnotes.md b/tests/testsuite/markdown/footnotes/src/footnotes.md
index f1fbacca..d7719a74 100644
--- a/tests/testsuite/markdown/footnotes/src/footnotes.md
+++ b/tests/testsuite/markdown/footnotes/src/footnotes.md
@@ -35,3 +35,13 @@ Footnote name with wacky characters[^"wacky"]
[^"wacky"]: Testing footnote id with special characters.
Testing when referring to something earlier.[^define-before-use]
+
+Footnote that is defined multiple times.[^multiple-definitions]
+
+[^multiple-definitions]: This is the first definition of the footnote with tag multiple-definitions
+
+And another[^in-between] that references the duplicate again.[^multiple-definitions]
+
+[^in-between]: Footnote between duplicates.
+
+[^multiple-definitions]: This is the second definition of the footnote with tag multiple-definitions