Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadyBoukhary committed Jul 3, 2024
1 parent 95c287f commit 343ffa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/controller_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class CounterController extends Controller {
}
}

class CounterPage extends View {
class CounterPage extends CleanView {
final CounterController controller;
final Function onWidgetBuild;
final Function onControlledWidgetBuild;
Expand All @@ -138,7 +138,7 @@ class CounterPage extends View {
State<StatefulWidget> createState() => CounterState(controller: controller);
}

class CounterState extends ViewState<CounterPage, CounterController> {
class CounterState extends CleanViewState<CounterPage, CounterController> {
CounterState({required CounterController controller}) : super(controller);

@override
Expand Down
2 changes: 1 addition & 1 deletion test/responsive_view_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class TestController extends Controller {
}
}

class TestPage extends View {
class TestPage extends CleanView {
final TestController controller;

TestPage({Key? key, required this.controller}) : super(key: key);
Expand Down

0 comments on commit 343ffa0

Please sign in to comment.