Skip to content

Commit

Permalink
Use full path to index requires
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Sep 12, 2016
1 parent 741d7ce commit 50cd3c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const download = require('..')
const download = require('../lib/index')
const test = require('tape')
const verifyDownloadedZip = require('./helpers').verifyDownloadedZip

Expand Down
2 changes: 1 addition & 1 deletion test/test_404.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const download = require('..')
const download = require('../lib/index')
const fs = require('fs')
const test = require('tape')

Expand Down
2 changes: 1 addition & 1 deletion test/test_symbols.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const download = require('..')
const download = require('../lib/index')
const test = require('tape')
const verifyDownloadedZip = require('./helpers').verifyDownloadedZip

Expand Down
2 changes: 1 addition & 1 deletion test/test_with_checksum.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const download = require('..')
const download = require('../lib/index')
const test = require('tape')
const verifyDownloadedZip = require('./helpers').verifyDownloadedZip

Expand Down

0 comments on commit 50cd3c4

Please sign in to comment.