Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 16ccac9

Browse files
test($compile): fix component helper test
The test was expecting to match an object containing a `transclude` property set to `false` but now the property is `undefined`.
1 parent 91b080e commit 16ccac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ng/compileSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9336,7 +9336,7 @@ describe('$compile', function() {
93369336
controllerAs: 'myComponent',
93379337
template: '',
93389338
templateUrl: undefined,
9339-
transclude: false,
9339+
transclude: undefined,
93409340
scope: {},
93419341
bindToController: {},
93429342
restrict: 'E'

0 commit comments

Comments
 (0)