Skip to content

Commit

Permalink
Update Travis node version
Browse files Browse the repository at this point in the history
  • Loading branch information
RaduM committed Jun 1, 2016
1 parent b295dfb commit c5971c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
- "4"
- "5"
sudo: false
Expand Down
4 changes: 2 additions & 2 deletions src/test/js/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ exports.template = {
this.processed = this.template.process(grunt, this.task,
this.context);
this.expected = grunt.util._.template(
grunt.file.read(DEFAULT_TEMPLATE))(this.context);
grunt.file.read(DEFAULT_TEMPLATE))(this.context);
test.equal(this.processed, this.expected,
'should render default template');
test.ok(redirected, 'should have redirected the template');
Expand All @@ -469,7 +469,7 @@ exports.template = {
},
'shouldRender': function (test) {
this.expected = grunt.util._.template(
grunt.file.read(DEFAULT_TEMPLATE))(this.context);
grunt.file.read(DEFAULT_TEMPLATE))(this.context);
test.equal(this.processed, this.expected,
'should render transparently');
test.done();
Expand Down

0 comments on commit c5971c8

Please sign in to comment.