Skip to content

Commit

Permalink
Simplified regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
mstniy committed Nov 30, 2023
1 parent 7668aff commit 572986b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/computed_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void main() {

var lCnt = 0;

final c1 = Computed.withSelf((self) {
final c1 = Computed(() {
try {
source2.react;
} on NoValueException {
Expand All @@ -196,7 +196,7 @@ void main() {
return lCnt;
});

final c2 = Computed.withSelf((self) {
final c2 = Computed(() {
try {
source1.react;
} on NoValueException {
Expand Down

0 comments on commit 572986b

Please sign in to comment.