summaryrefslogtreecommitdiff
path: root/test/clarktown/renderers/inline_code_test.clj
diff options
context:
space:
mode:
Diffstat (limited to 'test/clarktown/renderers/inline_code_test.clj')
-rw-r--r--test/clarktown/renderers/inline_code_test.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clarktown/renderers/inline_code_test.clj b/test/clarktown/renderers/inline_code_test.clj
index 2071b7f..b1b277e 100644
--- a/test/clarktown/renderers/inline_code_test.clj
+++ b/test/clarktown/renderers/inline_code_test.clj
@@ -7,8 +7,8 @@
(deftest inline-code-renderer-test
(testing "Creating inline code text"
(is (= "<code>This is inline code.</code>"
- (inline-code/render "`This is inline code.`" nil))))
+ (inline-code/render "`This is inline code.`" nil nil))))
(testing "Creating inline-code text in the middle of regular text"
(is (= "This is regular text, mixed with <code>some inline code.</code>, and it's great."
- (inline-code/render "This is regular text, mixed with `some inline code.`, and it's great." nil))))) \ No newline at end of file
+ (inline-code/render "This is regular text, mixed with `some inline code.`, and it's great." nil nil))))) \ No newline at end of file