Skip to content

Commit

Permalink
Update callback.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kjunichi committed Feb 18, 2015
1 parent 509860a commit e2cf481
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/callback.js
Expand Up @@ -49,7 +49,7 @@ describe('Callback', function () {
assert.equal(0, nul.address())
})

it.skip('should throw an Error when invoked through a ForeignFunction and throws', function () {
it('should throw an Error when invoked through a ForeignFunction and throws', function () {
var cb = ffi.Callback('void', [ ], function () {
throw new Error('callback threw')
})
Expand All @@ -59,7 +59,7 @@ describe('Callback', function () {
}, /callback threw/)
})

it.skip('should throw an Error with a meaningful message when a type\'s "set()" throws', function () {
it('should throw an Error with a meaningful message when a type\'s "set()" throws', function () {
var cb = ffi.Callback('int', [ ], function () {
return 'a string!?!?'
})
Expand Down

0 comments on commit e2cf481

Please sign in to comment.