Skip to content

Commit fc02c45

Browse files
cfsmp3claude
andcommitted
style: Format test file
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 049000e commit fc02c45

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/bloc_test.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ void main() {
120120
blocTest<DashboardBloc, DashboardState>(
121121
'emits empty state when RemoveAllFiles is added',
122122
build: () => DashboardBloc(),
123-
seed: () => DashboardState(files: [testFile1, testFile2], alreadyPresent: false),
123+
seed: () =>
124+
DashboardState(files: [testFile1, testFile2], alreadyPresent: false),
124125
act: (bloc) => bloc.add(RemoveAllFiles()),
125126
expect: () => [
126127
DashboardState(files: [], alreadyPresent: false),
@@ -130,7 +131,8 @@ void main() {
130131
blocTest<DashboardBloc, DashboardState>(
131132
'emits state without removed file when FileRemoved is added',
132133
build: () => DashboardBloc(),
133-
seed: () => DashboardState(files: [testFile1, testFile2], alreadyPresent: false),
134+
seed: () =>
135+
DashboardState(files: [testFile1, testFile2], alreadyPresent: false),
134136
act: (bloc) => bloc.add(FileRemoved(testFile1)),
135137
expect: () => [
136138
DashboardState(files: [testFile2], alreadyPresent: false),
@@ -165,8 +167,8 @@ void main() {
165167
act: (bloc) => bloc.add(ProcessFilesSubmitted([testFile])),
166168
expect: () => [
167169
isA<ProcessState>()
168-
.having((s) => s.originalList, 'originalList', [testFile])
169-
.having((s) => s.queue, 'queue', [testFile]),
170+
.having((s) => s.originalList, 'originalList', [testFile]).having(
171+
(s) => s.queue, 'queue', [testFile]),
170172
],
171173
);
172174

0 commit comments

Comments
 (0)