From 6bd9a39cee3b8fd8e5b61b033e7ddabdfe2d3f1f Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Fri, 2 Jun 2017 12:33:51 +0200 Subject: [PATCH] fix .toString() (#510) Closes GH-509. Thanks! --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 7cb7841..9a1f4f1 100644 --- a/index.js +++ b/index.js @@ -117,7 +117,6 @@ function Choo (opts) { function toString (location, _state) { state = _state || {} var html = router(location) - assert.equal() return html.toString() } }