Skip to content
This repository was archived by the owner on Apr 2, 2019. It is now read-only.

Commit 8622527

Browse files
committed
Clean up
1 parent 55c2f7a commit 8622527

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/body.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,6 @@ describe("A Body", function () {
511511
expect(body.rows[1].cells[0].$el.hasClass("editor")).toBe(false);
512512
});
513513

514-
// test fix for #507
515514
it("will not throw an exception when backgrid:edited is fired on a shared model", function () {
516515
var people = new Backbone.Collection([
517516
{name: "alice", age: 28, married: false},
@@ -547,7 +546,7 @@ describe("A Body", function () {
547546

548547
body.rows[0].cells[0].enterEditMode();
549548
var testTrigger = function() {
550-
people.trigger("backgrid:edited", people.at(0), columns.at(0), new Backgrid.Command({keyCode: 9}));
549+
people.trigger("backgrid:edited", people.at(0), columns.at(0), new Backgrid.Command({keyCode: 9}));
551550
};
552551
expect(testTrigger).not.toThrow();
553552
});

0 commit comments

Comments
 (0)