Remove trailing semicolon

This commit is contained in:
Nathan Sobo
2016-08-17 02:54:47 -06:00
committed by Antonio Scandurra
parent fd29f96af9
commit 4b68e2f411

View File

@@ -1127,7 +1127,7 @@ describe "Pane", ->
it "restores the correct item when it doesn't implement getURI() and some items weren't deserialized", ->
unserializable = {}
pane.addItem(unserializable, 0);
pane.addItem(unserializable, 0)
pane.items[2].getURI = null
pane.activateItemAtIndex(2)
newPane = Pane.deserialize(pane.serialize(), atom)