Skip to content

Commit 268ed10

Browse files
authoredJul 25, 2016
Merge pull request #19 from felippenardi/patch-1
Fix: coffescript to js conversion leftover
2 parents d615ede + c428c8f commit 268ed10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎patterns/directive.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ describe('Directive: myDir', function () {
113113
// Add specs
114114
});
115115

116-
return describe('when destroyed', function () {
116+
describe('when destroyed', function () {
117117
// Add specs
118118
});
119119
});
@@ -156,7 +156,7 @@ it 'should render the expected output', ->
156156
// JavaScript
157157
it('should render the expected output', function () {
158158
element = createDirective();
159-
return expect(element.text()).toBe('this is my directive');
159+
expect(element.text()).toBe('this is my directive');
160160
});
161161
```
162162

0 commit comments

Comments
 (0)
Please sign in to comment.