Skip to content

Commit efe4d1e

Browse files
committed
Use double quotes for consistency
1 parent 9575813 commit efe4d1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/references.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ module.exports = {
225225
}
226226
}
227227

228-
angular.module('MyMod').directive('testDirective', testDirective);
228+
angular.module("MyMod").directive("testDirective", testDirective);
229229
},
230230
expected: function () {
231231
function testDirective() {
232-
testFeedbackController.$inject = ['foo'];
232+
testFeedbackController.$inject = ["foo"];
233233
var directiveDefinition = {
234234
controller: testFeedbackController
235235
};
@@ -240,7 +240,7 @@ module.exports = {
240240
}
241241
}
242242

243-
angular.module('MyMod').directive('testDirective', testDirective);
243+
angular.module("MyMod").directive("testDirective", testDirective);
244244
}
245245
}
246246
]

0 commit comments

Comments
 (0)