Skip to content

Commit

Permalink
test: remove .only()
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Sep 19, 2015
1 parent 1187b80 commit c2e5996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/foreign_function.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe('ForeignFunction', function () {

// allow a Buffer backing store to be used as a "string" FFI argument
// https://github.com/node-ffi/node-ffi/issues/169
it.only('should call the static "test_169" bindings', function () {
it('should call the static "test_169" bindings', function () {
var test = ffi.ForeignFunction(bindings.test_169, 'int', [ 'string', 'int' ])
var b = new Buffer(20)
var len = test(b, b.length)
Expand Down

0 comments on commit c2e5996

Please sign in to comment.