Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: runtime/observatory/tests/service/test_helper.dart

Issue 2073893002: Removed all analyzer issues from tests (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/tests/service/test_helper.dart
diff --git a/runtime/observatory/tests/service/test_helper.dart b/runtime/observatory/tests/service/test_helper.dart
index e22cbb2fbee0879d16b4ed2ce86da2edf23e032e..1d2ea9d54dec24b1ab974940b3970138cb865a76 100644
--- a/runtime/observatory/tests/service/test_helper.dart
+++ b/runtime/observatory/tests/service/test_helper.dart
@@ -36,7 +36,7 @@ String _skyShellPath() {
return Platform.environment[_SKY_SHELL_ENV_KEY];
}
-class _SerivceTesteeRunner {
+class _ServiceTesteeRunner {
Future run({testeeBefore(): null,
testeeConcurrent(): null,
bool pause_on_start: false,
@@ -335,7 +335,7 @@ Future runIsolateTests(List<String> mainArgs,
bool pause_on_unhandled_exceptions: false}) async {
assert(!pause_on_start || testeeBefore == null);
if (_isTestee()) {
- new _SerivceTesteeRunner().run(testeeBefore: testeeBefore,
+ new _ServiceTesteeRunner().run(testeeBefore: testeeBefore,
testeeConcurrent: testeeConcurrent,
pause_on_start: pause_on_start,
pause_on_exit: pause_on_exit);
@@ -373,7 +373,7 @@ void runIsolateTestsSynchronous(List<String> mainArgs,
bool pause_on_unhandled_exceptions: false}) {
assert(!pause_on_start || testeeBefore == null);
if (_isTestee()) {
- new _SerivceTesteeRunner().runSync(testeeBeforeSync: testeeBefore,
+ new _ServiceTesteeRunner().runSync(testeeBeforeSync: testeeBefore,
testeeConcurrentSync: testeeConcurrent,
pause_on_start: pause_on_start,
pause_on_exit: pause_on_exit);
@@ -406,7 +406,7 @@ Future runVMTests(List<String> mainArgs,
bool verbose_vm: false,
bool pause_on_unhandled_exceptions: false}) async {
if (_isTestee()) {
- new _SerivceTesteeRunner().run(testeeBefore: testeeBefore,
+ new _ServiceTesteeRunner().run(testeeBefore: testeeBefore,
testeeConcurrent: testeeConcurrent,
pause_on_start: pause_on_start,
pause_on_exit: pause_on_exit);

Powered by Google App Engine
This is Rietveld 408576698