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

Unified Diff: runtime/vm/isolate_reload_test.cc

Issue 2455983002: Small cleanups and linter fixes. (Closed)
Patch Set: Small cleanups Created 4 years, 2 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
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate_reload_test.cc
diff --git a/runtime/vm/isolate_reload_test.cc b/runtime/vm/isolate_reload_test.cc
index e33cb97f82c14e66f9d61d8cac2398219ad35745..c8282e4cbdb5375207178bee5d034f830553cc69 100644
--- a/runtime/vm/isolate_reload_test.cc
+++ b/runtime/vm/isolate_reload_test.cc
@@ -313,7 +313,7 @@ TEST_CASE(IsolateReload_LibraryImportAdded) {
Dart_Handle lib = TestCase::LoadTestScript(kScript, NULL);
EXPECT_VALID(lib);
- EXPECT_ERROR(SimpleInvokeError(lib, "main"), "max");;
+ EXPECT_ERROR(SimpleInvokeError(lib, "main"), "max");
const char* kReloadScript =
"import 'dart:math';\n"
@@ -346,7 +346,7 @@ TEST_CASE(IsolateReload_LibraryImportRemoved) {
lib = TestCase::ReloadTestScript(kReloadScript);
EXPECT_VALID(lib);
- EXPECT_ERROR(SimpleInvokeError(lib, "main"), "max");;
+ EXPECT_ERROR(SimpleInvokeError(lib, "main"), "max");
}
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698