Skip to content

Commit

Permalink
Fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Jun 19, 2024
1 parent 9d387c7 commit 58e7808
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ void main() {
// Build our app and trigger a frame.
await tester.pumpWidget(MaidApp(
appPreferences: AppPreferences(ThemeMode.system, AppLayout.system),
appData: AppData([],[], Session(0), Character()),
appData: AppData([],[], Session(() {},0), Character(() {})),
user: User(),
));
});

testWidgets('Find drawer menu button', (WidgetTester tester) async {
await tester.pumpWidget(MaidApp(
appPreferences: AppPreferences(ThemeMode.system, AppLayout.system),
appData: AppData([],[], Session(0), Character()),
appData: AppData([],[], Session(() {}, 0), Character(() {})),
user: User(),
));

Expand All @@ -34,7 +34,7 @@ void main() {
testWidgets('Open drawer menu', (WidgetTester tester) async {
await tester.pumpWidget(MaidApp(
appPreferences: AppPreferences(ThemeMode.system, AppLayout.system),
appData: AppData([],[], Session(0), Character()),
appData: AppData([],[], Session(() {}, 0), Character(() {})),
user: User(),
));

Expand Down

0 comments on commit 58e7808

Please sign in to comment.