Skip to content

Commit d3d6516

Browse files
author
Kent C. Dodds
committed
Modifying files 🎂
1 parent f4bbb2b commit d3d6516

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎src/todo-escape.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* an `escape` keydown event.
66
*/
77
angular
8-
.module('todomvc')
8+
.module('todoEscape', [])
99
.directive('todoEscape', function() {
1010
'use strict';
1111

‎src/todo-escape.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ describe('todo-escape', function() {
44
var template = '<input todo-escape="escapePressed=true" />';
55
var scope, compile;
66

7-
beforeEach(module('todomvc'));
7+
beforeEach(module('todoEscape'));
88

99
beforeEach(inject(function($rootScope, $compile) {
1010
scope = $rootScope.$new();

0 commit comments

Comments
 (0)