Skip to content

Commit 6f33b34

Browse files
committed
fix: formatting
1 parent 421b4d6 commit 6f33b34

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/trent_test.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,10 @@ class _TestAppState extends State<TestApp> {
136136
..as<B>((state) => _counter = 3)
137137
..as<C>((state) => _counter = 4);
138138
},
139-
listenAlertsIf: (oldAlert, newAlert) => newAlert is D || newAlert is B,
140-
listenStatesIf: (oldState, newState) => newState is A || newState is B || newState is C,
139+
listenAlertsIf: (oldAlert, newAlert) =>
140+
newAlert is D || newAlert is B,
141+
listenStatesIf: (oldState, newState) =>
142+
newState is A || newState is B || newState is C,
141143
child: Center(
142144
child: Column(
143145
mainAxisAlignment: MainAxisAlignment.center,
@@ -200,7 +202,8 @@ void main() {
200202
expect(find.text("Digester State C: 99"), findsOneWidget);
201203
});
202204

203-
testWidgets('Alerter updates _counter on alert and state changes', (tester) async {
205+
testWidgets('Alerter updates _counter on alert and state changes',
206+
(tester) async {
204207
await tester.pumpWidget(
205208
TrentManager(
206209
trents: [register(SimpleTrent())],

0 commit comments

Comments
 (0)