File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
dwds/test/instances/common Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
import 'package:test/test.dart' ;
6
- import 'package:test_common/utilities.dart' ;
7
6
import 'package:vm_service/vm_service.dart' ;
8
7
9
8
import '../../fixtures/context.dart' ;
@@ -255,11 +254,7 @@ Matcher matchRecordTypeInstanceRef({required int length}) => isA<InstanceRef>()
255
254
.having (
256
255
(e) => e.kind,
257
256
'kind' ,
258
- // See https://github.com/dart-lang/sdk/commit/67e052d7e996be8ad9d02970117ffef07eab1c77.
259
- // TODO() Can't compare edge verisons, wait for this to get to a dev release.
260
- dartSdkIsAtLeast ('3.4.0-edge.eeec4d36e3ea9b166da277a46f62d7d3b9ce645a' )
261
- ? InstanceKind .kType
262
- : InstanceKind .kRecordType,
257
+ InstanceKind .kRecordType,
263
258
)
264
259
.having ((e) => e.length, 'length' , length)
265
260
.having ((e) => e.classRef! , 'classRef' , matchRecordTypeClassRef);
You can’t perform that action at this time.
0 commit comments