Skip to content

Commit

Permalink
Updating test expectations for DDC Set implementations. (#2458)
Browse files Browse the repository at this point in the history
* Fixing Set runtime test output names in DDC

* Updating set impl enclosing library
  • Loading branch information
Markzipan authored Jul 8, 2024
1 parent da312c7 commit c26ed86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwds/test/instances/common/test_inspector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Matcher matchListClassRef(String type) => matchClassRef(
Matcher matchMapClassRef(String type) =>
matchClassRef(name: type, libraryId: _dartJsHelperLibrary);
Matcher matchSetClassRef(String type) =>
matchClassRef(name: type, libraryId: _dartCollectionLibrary);
matchClassRef(name: type, libraryId: _dartJsHelperLibrary);

Matcher matchClassRef({dynamic name, dynamic libraryId}) => isA<ClassRef>()
.having((e) => e.name, 'class ref name', name)
Expand Down

0 comments on commit c26ed86

Please sign in to comment.