From 012be05a6a704fbdce09ff5c3f060930d6d427f9 Mon Sep 17 00:00:00 2001 From: Patrick O'Leary Date: Thu, 7 May 2015 21:56:11 -0500 Subject: [PATCH] Fix for new lowering of triple-quote string macros The _mstr macros are no longer used, and dispatch to the _str macro instead. JuliaLang/julia#10228 --- juliadoc/jldoctest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juliadoc/jldoctest.py b/juliadoc/jldoctest.py index b281281..418429c 100644 --- a/juliadoc/jldoctest.py +++ b/juliadoc/jldoctest.py @@ -804,7 +804,7 @@ def compile(self, code, name, type, flags, dont_inherit): def test_group(self, group, filename): j = Popen(["../julia"], stdin=PIPE, stdout=PIPE, stderr=STDOUT) - j.stdin.write("macro raw_mstr(s) s end\n") + j.stdin.write("macro raw_str(s) s end\n") j.stdin.write("_ans = nothing\n") self.setup_runner.julia = j self.test_runner.julia = j