Skip to content

Commit

Permalink
tests: Don't annonymize internal dock widgets
Browse files Browse the repository at this point in the history
Specially the central persistent widget.
  • Loading branch information
iamsergio committed Apr 15, 2024
1 parent 7b91f31 commit 3517f0b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/anonymize_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ main(List<String> args) {
return;
}

/// Skip internals
if (["-persistentCentralDockWidget", "_kddw_internal_dummy", "_kddw_internal_dummy2"].contains(name))
continue;

contents = contents.replaceAll(name, "dockwidget_tests_$i");
i++;
}
Expand Down

0 comments on commit 3517f0b

Please sign in to comment.