Skip to content

Commit

Permalink
change test to look for ServerError not 500
Browse files Browse the repository at this point in the history
  • Loading branch information
nhannah committed Sep 18, 2024
1 parent 5e849db commit e54ff17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/test_track/test/test_track_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void main() {

expect(
logger.infoLogs.single.error.toString(),
contains('status code of 500'),
contains('ServerError'),
);
});

Expand Down Expand Up @@ -297,7 +297,7 @@ void main() {

expect(
logger.infoLogs.single.error.toString(),
contains('status code of 500'),
contains('ServerError'),
);
});
});
Expand Down

0 comments on commit e54ff17

Please sign in to comment.