Skip to content

Commit

Permalink
Fixing Set runtime test output names in DDC (#2457)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
Markzipan authored Jul 2, 2024
1 parent 75417c0 commit da312c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwds/test/instances/common/instance_inspection_common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void runTests({
final instanceId = instanceRef.id!;
expect(
await getObject(instanceId),
matchSetInstance(type: '_HashSet<int>'),
matchSetInstance(type: 'LinkedSet<int>'),
);

expect(
Expand Down

0 comments on commit da312c7

Please sign in to comment.