Skip to content
Snippets Groups Projects
Commit ce63e8f8 authored by Devon Carew's avatar Devon Carew Committed by GitHub
Browse files

Merge pull request #598 from devoncarew/analysis_warnings

fix a few analysis warnings
parents 88fabac3 9be59de4
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,6 @@ import 'runner/loader.dart'; ...@@ -25,7 +25,6 @@ import 'runner/loader.dart';
import 'runner/reporter.dart'; import 'runner/reporter.dart';
import 'runner/reporter/compact.dart'; import 'runner/reporter/compact.dart';
import 'runner/reporter/expanded.dart'; import 'runner/reporter/expanded.dart';
import 'runner/reporter/json.dart';
import 'util/io.dart'; import 'util/io.dart';
import 'utils.dart'; import 'utils.dart';
......
...@@ -8,7 +8,6 @@ import 'dart:io'; ...@@ -8,7 +8,6 @@ import 'dart:io';
import 'package:path/path.dart' as p; import 'package:path/path.dart' as p;
import '../../util/io.dart'; import '../../util/io.dart';
import '../../utils.dart';
import 'browser.dart'; import 'browser.dart';
// TODO(nweiz): move this into its own package? // TODO(nweiz): move this into its own package?
......
...@@ -139,7 +139,7 @@ void test(description, body(), ...@@ -139,7 +139,7 @@ void test(description, body(),
// `main()` in JS stack traces in order to properly determine the line and // `main()` in JS stack traces in order to properly determine the line and
// column where the test was defined. See sdk#26705. // column where the test was defined. See sdk#26705.
return; return;
return; return; // ignore: dead_code
} }
/// Creates a group of tests. /// Creates a group of tests.
...@@ -202,7 +202,7 @@ void group(description, body(), ...@@ -202,7 +202,7 @@ void group(description, body(),
// `main()` in JS stack traces in order to properly determine the line and // `main()` in JS stack traces in order to properly determine the line and
// column where the test was defined. See sdk#26705. // column where the test was defined. See sdk#26705.
return; return;
return; return; // ignore: dead_code
} }
/// Registers a function to be run before tests. /// Registers a function to be run before tests.
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
import 'dart:async'; import 'dart:async';
import 'package:test/src/backend/state.dart';
import 'package:test/test.dart'; import 'package:test/test.dart';
import '../utils.dart'; import '../utils.dart';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment