Skip to content

Commit

Permalink
Fixing assertFile syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
eggers committed Jan 21, 2014
1 parent 605f3cb commit fa454bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test-file-creation.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ describe('Angular generator', function () {
});
angular.run([], function (){
angularView.run([], function () {
helpers.assertFiles([
helpers.assertFile(
['app/views/foo.html']
]);
);
done();
});
});
Expand All @@ -230,9 +230,9 @@ describe('Angular generator', function () {
});
angular.run([], function (){
angularView.run([], function () {
helpers.assertFiles([
helpers.assertFile(
['app/views/foo/bar.html']
]);
);
done();
});
});
Expand Down

0 comments on commit fa454bc

Please sign in to comment.