Navigation Menu

Skip to content

Commit

Permalink
Fix path to fixture files
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 9, 2012
1 parent cfce7d2 commit 613e42d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gcs-commands.test.js
Expand Up @@ -747,7 +747,7 @@ suite('gcs-post-sdf', function() {

test('post unknown format file', function(done) {
setupDomain();
var batchFile = path.join(__dirname, 'fixtures', 'synonyms.txt');
var batchFile = path.join(__dirname, 'fixture', 'synonyms.txt');
utils
.run('gcs-post-sdf',
'--domain-name', 'companies',
Expand All @@ -769,7 +769,7 @@ suite('gcs-post-sdf', function() {

test('post missing file', function(done) {
setupDomain();
var batchFile = path.join(__dirname, 'fixtures', 'not-exists.json');
var batchFile = path.join(__dirname, 'fixture', 'not-exists.json');
utils
.run('gcs-post-sdf',
'--domain-name', 'companies',
Expand Down

0 comments on commit 613e42d

Please sign in to comment.