From a4ac2750b14ed312e4dfca1a60eb0dd27be3540e Mon Sep 17 00:00:00 2001 From: Toon Baeyens Date: Fri, 20 Mar 2020 18:09:03 +0100 Subject: [PATCH] fix test --- notebook/tests/notebook/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/tests/notebook/markdown.js b/notebook/tests/notebook/markdown.js index f26250a64..377b26ef5 100644 --- a/notebook/tests/notebook/markdown.js +++ b/notebook/tests/notebook/markdown.js @@ -14,7 +14,7 @@ casper.notebook_test(function () { function mathjax_render_test(input_string, result, message){ casper.thenEvaluate(function (text){ window._test_result = null; - require(['notebook/js/mathjaxutils'],function(mathjaxutils){ + require(['base/js/mathjaxutils'],function(mathjaxutils){ window._test_result = mathjaxutils.remove_math(text); }); }, {text: input_string});