Skip to content

Commit 37746fc

Browse files
committed
Updated tests
1 parent d2060b9 commit 37746fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/fixtures/1in.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ angular.module("foo").directive("bar",
33
return {
44
template: (
55
<div>
6-
<h1>Multi-line example</h1>
7-
<div class="bar">This is a bit more <em>advanced</em>.</div>
6+
<h1>{{title}}</h1>
7+
<div class="bar" ng-click="go()">This is a bit more <em>advanced</em>.</div>
88
</div>
99
)
1010
}

test/fixtures/1out.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ angular.module("foo").directive("bar",
22
function() {
33
return {
44
template: (
5-
"<div>\n <h1>Multi-line example</h1>\n <div class=\"bar\">This is a bit more <em>advanced</em>.</div>\n</div>"
5+
"<div>\n <h1>{{title}}</h1>\n <div class=\"bar\" ng-click=\"go()\">This is a bit more <em>advanced</em>.</div>\n</div>"
66
)
77
}
88
}

0 commit comments

Comments
 (0)