Skip to content

Commit 1a42f84

Browse files
committed
Merge branch '1.0' into 1.1
2 parents 89fcbf0 + a30da6e commit 1a42f84

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gulpfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ gulp.task('build-browser-test', function(){
8383
var testFiles = [];
8484
return gulp.src('./test/**/*.test.js')
8585
.pipe( through.obj( function( file, enc, cb ) {
86-
testFiles.push( file.path );
86+
if(file.path.indexOf('examples.test.js') < 0) {
87+
testFiles.push( file.path );
88+
}
8789
cb();
8890
}, function(cb) {
8991
// At end-of-stream, push the list of files to the next step

test/v1/record.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
var Record = require("../../lib/v1/record").Record;
21-
var Neo4jError = require("../../lib/v1/internal/error").Neo4jError;
21+
var Neo4jError = require("../../lib/v1/error").Neo4jError;
2222

2323

2424
describe('Record', function() {

0 commit comments

Comments
 (0)