Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pongloongyeat committed Jan 23, 2024
1 parent 40aec80 commit a446b8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void main() {
..addObserver(
instance,
name: observerName,
callback: (message) => callCount = message.info!['callCount'] as int,
callback: (message) => callCount = message!['callCount'] as int,
)
..post(name: observerName, info: {'callCount': 1});

Expand Down

0 comments on commit a446b8a

Please sign in to comment.