Skip to content

Commit

Permalink
style: Simplify and unify syntax used for exports on flame_test (#3479)
Browse files Browse the repository at this point in the history
Simplify and unify syntax used for exports on flame_test.

The file in question only has one public class, which is exported.
This brings it in line with all other exports on the file - the only
exception being `test_golden.dart` which does indeed declare other
auxiliary public types.
  • Loading branch information
luanpotter authored Feb 8, 2025
1 parent 51d7fbc commit aad5020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/flame_test/lib/flame_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export 'src/close_to_aabb.dart' show closeToAabb;
export 'src/close_to_aabb.dart';
export 'src/close_to_vector.dart';
export 'src/close_to_vector3.dart';
export 'src/debug_text_renderer.dart' show DebugTextRenderer;
export 'src/debug_text_renderer.dart';
export 'src/expect_color.dart';
export 'src/expect_double.dart';
export 'src/fails_assert.dart';
Expand Down

0 comments on commit aad5020

Please sign in to comment.