Skip to content

Commit

Permalink
Update tests after #1037
Browse files Browse the repository at this point in the history
  • Loading branch information
Victorystick committed Nov 11, 2016
1 parent ab3b38f commit 59f815b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/form/unused-called-import/_expected/amd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define(function () { 'use strict';

var foo = function() { return 'foo'; }
var foo = function() { return 'foo'; };

assert.equal( foo(), 'foo' );

Expand Down
2 changes: 1 addition & 1 deletion test/form/unused-called-import/_expected/cjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

var foo = function() { return 'foo'; }
var foo = function() { return 'foo'; };

assert.equal( foo(), 'foo' );
2 changes: 1 addition & 1 deletion test/form/unused-called-import/_expected/es.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
var foo = function() { return 'foo'; }
var foo = function() { return 'foo'; };

assert.equal( foo(), 'foo' );
2 changes: 1 addition & 1 deletion test/form/unused-called-import/_expected/iife.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function () {
'use strict';

var foo = function() { return 'foo'; }
var foo = function() { return 'foo'; };

assert.equal( foo(), 'foo' );

Expand Down
2 changes: 1 addition & 1 deletion test/form/unused-called-import/_expected/umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
(factory());
}(this, (function () { 'use strict';

var foo = function() { return 'foo'; }
var foo = function() { return 'foo'; };

assert.equal( foo(), 'foo' );

Expand Down

0 comments on commit 59f815b

Please sign in to comment.