fix .toString() (#510)

Closes GH-509. Thanks!
This commit is contained in:
Yoshua Wuyts
2017-06-02 12:33:51 +02:00
committed by GitHub
parent 8ff7deea3c
commit 6bd9a39cee
-1
View File
@@ -117,7 +117,6 @@ function Choo (opts) {
function toString (location, _state) { function toString (location, _state) {
state = _state || {} state = _state || {}
var html = router(location) var html = router(location)
assert.equal()
return html.toString() return html.toString()
} }
} }