Skip to content

Commit

Permalink
Merge pull request #878 from thKali/master
Browse files Browse the repository at this point in the history
fix: english little corrections
  • Loading branch information
jacobaraujo7 committed Aug 30, 2023
2 parents 9fdfbcb + de2fe37 commit 7a00e54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modular_core/test/src/tracker_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void main() {
tracker.runApp(module);
});

test('thwow error if runApp not iniciate module', () {
test('throw error if runApp not initiate module', () {
tracker.finishApp();
expect(() => tracker.module, throwsA(isA<TrackerNotInitiated>()));
});
Expand Down Expand Up @@ -136,7 +136,7 @@ class MyModule extends Module {
CustomRoute(
'/',
data: 'first',
middlewares: [CustomMidleware()],
middlewares: [CustomMiddleware()],
children: [
CustomRoute('/second', data: 'second'),
],
Expand Down Expand Up @@ -208,7 +208,7 @@ class ImportedModule2 extends Module {

class EmptyModule extends Module {}

class CustomMidleware implements Middleware {
class CustomMiddleware implements Middleware {
@override
FutureOr<ModularRoute?> pre(ModularRoute route) {
pos(route, '');
Expand Down

0 comments on commit 7a00e54

Please sign in to comment.