Skip to content

Commit da312c7

Browse files
authored
Fixing Set runtime test output names in DDC (#2457)
Fixes tests that break due to https://dart-review.googlesource.com/c/sdk/+/373327 DDC now represents `_HashSet` objects as `LinkedSet` in its internal representation (no implementation changes).
1 parent 75417c0 commit da312c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dwds/test/instances/common/instance_inspection_common.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ void runTests({
295295
final instanceId = instanceRef.id!;
296296
expect(
297297
await getObject(instanceId),
298-
matchSetInstance(type: '_HashSet<int>'),
298+
matchSetInstance(type: 'LinkedSet<int>'),
299299
);
300300

301301
expect(

0 commit comments

Comments
 (0)