Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Commit

Permalink
Fix tests after #520.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Feb 24, 2015
1 parent eb73f98 commit e0520a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-config-writer.js
Expand Up @@ -404,7 +404,7 @@ describe('ConfigWriter', function () {
});

it('should not add the same block multiple times though we call process() explicitly 2 times.', function () {
var flow = new Flow({steps: {js: ['concat', 'uglifyjs']}});
var flow = new Flow({steps: {js: ['concat', 'uglify']}});

var file = helpers.createFile('foo', 'app', blocks);
var c = new ConfigWriter(flow, {input: 'app', dest: 'destination', staging: '.tmp'});
Expand Down

1 comment on commit e0520a7

@stephanebachelier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@XhmikosR good catch.
Indeed it's the merge of #323 and this commit eb73f98 which broke the test.

Please sign in to comment.