Skip to content

Commit cfebac8

Browse files
committed
fix: Incorrect syntax in test_recorder, and failing pr_quality github workflow test command.
1 parent 4c622a4 commit cfebac8

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/pr_quality.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,9 @@ jobs:
2626
run: dart format --output none --set-exit-if-changed .
2727
- name: Analyze
2828
run: dart analyze . --fatal-infos --fatal-warnings
29-
- name: Run tests
29+
- name: Run box_transform tests
30+
working-directory: packages/box_transform
31+
run: flutter test
32+
- name: Run flutter_box_transform tests
33+
working-directory: packages/flutter_box_transform
3034
run: flutter test

packages/flutter_box_transform/example/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ app.*.symbols
4040
# Obfuscation related
4141
app.*.map.json
4242

43+
# Android related
44+
/android/local.properties
45+
4346
# Android Studio will place build artifacts here
4447
/android/app/debug
4548
/android/app/profile

packages/flutter_box_transform/example/android/local.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

packages/flutter_box_transform/playground/lib/test_recorder.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class TestTick {
109109
TestTick({required this.localPosition, required this.result});
110110
}
111111

112-
class TestAction with Equatable {
112+
class TestAction extends Equatable {
113113
final int id;
114114
final ResizeMode resizeMode;
115115
final Flip flip;

0 commit comments

Comments
 (0)