File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
dwds/test/instances/common Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -382,7 +382,6 @@ Object? _getValue(InstanceRef instanceRef) {
382382final _dartCoreLibrary = 'dart:core' ;
383383final _dartInterceptorsLibrary = 'dart:_interceptors' ;
384384final _dartJsHelperLibrary = 'dart:_js_helper' ;
385- final _dartCollectionLibrary = 'dart:collection' ;
386385final _dartRuntimeLibrary = 'dart:_runtime' ;
387386
388387final matchRecordClassName = 'Record' ;
Original file line number Diff line number Diff line change @@ -247,11 +247,11 @@ void runTests({
247247 await onBreakPoint ('printSimpleLocalRecord' , (event) async {
248248 final frame = event.topFrame! .index! ;
249249 final instanceRef = await getInstanceRef (frame, '<int>{}.runtimeType' );
250- expect (instanceRef, matchTypeInstanceRef ('_IdentityHashSet <int>' ));
250+ expect (instanceRef, matchTypeInstanceRef ('IdentitySet <int>' ));
251251
252252 final instanceId = instanceRef.id! ;
253253 final instance = await getObject (instanceId);
254- expect (instance, matchTypeInstance ('_IdentityHashSet <int>' ));
254+ expect (instance, matchTypeInstance ('IdentitySet <int>' ));
255255
256256 final classId = instanceRef.classRef! .id;
257257 expect (await getObject (classId), matchTypeClass);
You can’t perform that action at this time.
0 commit comments