Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Grupp committed Feb 23, 2015
1 parent 1a13739 commit 87e7fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-template.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('m:template', function () {
it('template file contents', function () {
var filePath = 'app/' + config.DEFAULT_MODULE + '/templates/some-template.html';
assert.fileContent([
[filePath, '<h1 class="title">' + config.DEFAULT_MODULE + '</h1>'],
[filePath, '<h1 class="title">' + config.DEFAULT_MODULE + ' module</h1>'],
[filePath, 'This is your some-template template!']
]);
});
Expand All @@ -34,7 +34,7 @@ describe('m:template', function () {
it('template file contents', function () {
var filePath = 'app/my-module/templates/some-template.html';
assert.fileContent([
[filePath, '<h1 class="title">myModule</h1>'],
[filePath, '<h1 class="title">myModule module</h1>'],
[filePath, 'This is your someTemplate template!']
]);
});
Expand Down

0 comments on commit 87e7fe2

Please sign in to comment.