Skip to content

Commit b1f69b2

Browse files
committed
Revert accidentally added "skip".
1 parent 44cc7a8 commit b1f69b2

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

source_gen/test/type_checker_test.dart

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ void main() {
182182
onPlatform: const {
183183
'windows': Skip('https://github.com/dart-lang/source_gen/issues/573'),
184184
},
185-
skip: 'Google3 test gives google3:// URI for the test mirror',
186185
);
187186
});
188187

@@ -200,14 +199,10 @@ void main() {
200199
group(
201200
'(MapMixin',
202201
() {
203-
test(
204-
'should equal MapMixin class',
205-
() {
206-
expect(checkMapMixin().isExactlyType(staticMapMixin), isTrue);
207-
expect(checkMapMixin().isExactly2(staticMapMixin.element3), isTrue);
208-
},
209-
skip: 'Google3 test gives google3:// URI for the test mirror',
210-
);
202+
test('should equal MapMixin class', () {
203+
expect(checkMapMixin().isExactlyType(staticMapMixin), isTrue);
204+
expect(checkMapMixin().isExactly2(staticMapMixin.element3), isTrue);
205+
});
211206
},
212207
onPlatform: const {
213208
'windows': Skip('https://github.com/dart-lang/source_gen/issues/573'),

0 commit comments

Comments
 (0)