Skip to content

Commit

Permalink
fix test?
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenthompson-wk committed Dec 15, 2023
1 parent 8b134d3 commit c37159d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions w_flux_codemod/test/action_v2_suggestor_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ ${after}
'class C { var action; C() { action = Action(); } }',
'class C { var action; C() { action = ActionV2(); } }',
);
// testSuggestor(
// 'skips dynamic Actions',
// suggestor,
// 'Action a; a = Action();',
// 'Action a; Action b = Action(); var c = Action();',
// );
testSuggestor(
'skips dynamic Actions',
suggestor,
'Action a; Action b = Action(); var c = Action();',
'Action a; Action b = Action(); var c = Action();',
);
});
});

Expand Down

0 comments on commit c37159d

Please sign in to comment.