Skip to content

Commit

Permalink
Rename new NanNew tests file
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoopa committed Nov 8, 2014
1 parent 8e5bb85 commit a9c3ca9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ LINT_SOURCES = \
test/cpp/multifile1.cpp \
test/cpp/multifile2.cpp \
test/cpp/multifile2.h \
test/cpp/nannew.cpp \
test/cpp/news.cpp \
test/cpp/optionvalues.cpp \
test/cpp/persistent.cpp \
Expand All @@ -37,7 +38,6 @@ LINT_SOURCES = \
test/cpp/settergetter.cpp \
test/cpp/strings.cpp \
test/cpp/symbols.cpp \
test/cpp/test_nan_new.cpp \
test/cpp/weak.cpp \
node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc

Expand Down
4 changes: 2 additions & 2 deletions test/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
]
}
, {
"target_name" : "test_nan_new"
, "sources" : [ "cpp/test_nan_new.cpp" ]
"target_name" : "nannew"
, "sources" : [ "cpp/nannew.cpp" ]
, "include_dirs": [
"<!(node -e \"require('..')\")"
]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/js/nan_new-test.js → test/js/nannew-test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const test = require('tap').test
, testRoot = require('path').resolve(__dirname, '..')
, bindings = require('bindings')({ module_root: testRoot, bindings: 'test_nan_new' });
, bindings = require('bindings')({ module_root: testRoot, bindings: 'nannew' });


// register c++ functions as tests...
Expand Down

0 comments on commit a9c3ca9

Please sign in to comment.