Skip to content

Commit

Permalink
Update another test for IA32 removal
Browse files Browse the repository at this point in the history
  • Loading branch information
parlough committed Feb 25, 2025
1 parent da652cc commit 09d197b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tool/get-dart/dart_sdk_archive/test/table_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ void main() {

selector.selectedOs = 'linux';
await pumpEventQueue();
expect(countVisibleNodes(), 6);
expect(countVisibleNodes(), 5);

selector.selectedOs = 'windows';
await pumpEventQueue();
expect(countVisibleNodes(), 4);
expect(countVisibleNodes(), 3);

selector.selectedOs = 'all';
await pumpEventQueue();
expect(countVisibleNodes(), 11);
expect(countVisibleNodes(), 9);

expect(table.outerHTML.toString(), equals(nodesHtmlV400));
});
Expand Down

0 comments on commit 09d197b

Please # to comment.