Skip to content

Commit

Permalink
Update spec to reflect delete behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Jan 27, 2013
1 parent de3b566 commit b712f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/q-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ describe("promises for objects", function () {
.del('a')
.then(function (result) {
expect('a' in object).toBe(false);
expect(result).toBe(object);
expect(result).toBe(void 0);
}, function (exception) {
expect("up").toBe("down");
});
Expand Down

0 comments on commit b712f32

Please sign in to comment.