Skip to content

Commit 0e339e4

Browse files
authored
Fix analysis issues (flutter#4)
1 parent 8b6ba73 commit 0e339e4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/default_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ void main() {
8181
/// A wrapper for [neverCalled] that works around sdk#33015.
8282
void Function() get neverCalledVoid {
8383
var function = neverCalled;
84-
return () => neverCalled();
84+
return () => function();
8585
}

test/stopwatch_test.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
import 'dart:async';
16-
1715
import 'package:clock/clock.dart';
1816

1917
import 'package:test/test.dart';

0 commit comments

Comments
 (0)