| Index: third_party/pkg/angular/test/directive/ng_show_hide_spec.dart
|
| diff --git a/third_party/pkg/angular/test/directive/ng_show_hide_spec.dart b/third_party/pkg/angular/test/directive/ng_show_hide_spec.dart
|
| index c0c01d66fda0dbbfcfb8268b458057a6dd1bc2fe..fcbdaf7b766996684a67024610e364fb3d00551f 100644
|
| --- a/third_party/pkg/angular/test/directive/ng_show_hide_spec.dart
|
| +++ b/third_party/pkg/angular/test/directive/ng_show_hide_spec.dart
|
| @@ -6,7 +6,7 @@ import '../_specs.dart';
|
| main() {
|
| describe('NgHide', () {
|
| TestBed _;
|
| - beforeEach(inject((TestBed tb) => _ = tb));
|
| + beforeEach((TestBed tb) => _ = tb);
|
|
|
| it('should add/remove ng-hide class', () {
|
| _.compile('<div ng-hide="isHidden"></div>');
|
| @@ -27,7 +27,7 @@ main() {
|
|
|
| describe('NgShow', () {
|
| TestBed _;
|
| - beforeEach(inject((TestBed tb) => _ = tb));
|
| + beforeEach((TestBed tb) => _ = tb);
|
|
|
| it('should add/remove ng-hide class', () {
|
| _.compile('<div ng-show="isShown"></div>');
|
|
|