Skip to content

Commit

Permalink
chore: remove redundant arguments (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
alestiago authored Mar 12, 2024
1 parent bdac658 commit 39cd99c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions test/crossword/game/crossword_game_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ void main() {
createGame,
(game) async {
const state = CrosswordLoaded(
width: 40,
height: 40,
sectionSize: 400,
sections: {},
);
Expand All @@ -345,8 +343,6 @@ void main() {
createGame,
(game) async {
const state = CrosswordLoaded(
width: 40,
height: 40,
sectionSize: 400,
sections: {},
);
Expand All @@ -363,8 +359,6 @@ void main() {
createGame,
(game) async {
const state = CrosswordLoaded(
width: 40,
height: 40,
sectionSize: 400,
sections: {},
);
Expand Down
4 changes: 0 additions & 4 deletions test/crossword/view/crossword_page_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ void main() {
testWidgets('can zoom in', (tester) async {
when(() => bloc.state).thenReturn(
CrosswordLoaded(
width: 40,
height: 40,
sectionSize: 40,
sections: const {},
),
Expand All @@ -117,8 +115,6 @@ void main() {
testWidgets('can zoom out', (tester) async {
when(() => bloc.state).thenReturn(
CrosswordLoaded(
width: 40,
height: 40,
sectionSize: 40,
sections: const {},
),
Expand Down

0 comments on commit 39cd99c

Please sign in to comment.