From 00b6f5caacd83ac9e40c420ad3f59e8abb7f3ec0 2014-05-07 05:41:24
From: MinRK <benjaminrk@gmail.com>
Date: 2014-05-07 05:41:24
Subject: [PATCH] fix safe_append_output test

---

diff --git a/IPython/html/tests/notebook/safe_append_output.js b/IPython/html/tests/notebook/safe_append_output.js
index 1217740..7604d7b 100644
--- a/IPython/html/tests/notebook/safe_append_output.js
+++ b/IPython/html/tests/notebook/safe_append_output.js
@@ -14,7 +14,7 @@ casper.notebook_test(function () {
     this.evaluate(function () {
         var cell = IPython.notebook.get_cell(0);
         cell.set_text( "dp = get_ipython().display_pub\n" +
-                       "dp.publish('test', {'text/plain' : '5', 'image/png' : 5})"
+                       "dp.publish({'text/plain' : '5', 'image/png' : 5})"
         );
         cell.execute();
     });