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

Unified Diff: lib/testing/render_test.dart

Issue 55233009: Fix attributeChanged signature in WebUI (needs latest cherry-pick of custom (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 1 month 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 | « no previous file | lib/web_ui.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/testing/render_test.dart
diff --git a/lib/testing/render_test.dart b/lib/testing/render_test.dart
index a1fae296f1d9be9f245d7af98bed7e5bbd946154..c433f458750d4b7f87fc7fb25b6a25481a706571 100644
--- a/lib/testing/render_test.dart
+++ b/lib/testing/render_test.dart
@@ -17,7 +17,7 @@ void renderTests(String baseDir, String inputDir, String expectedDir,
String outDir, {List<String> arguments, String script, String pattern,
bool deleteDir: true}) {
if (arguments == null) arguments = [];
- if (script == null) script = Platform.script.toString();
+ if (script == null) script = Platform.script.path;
var filePattern = new RegExp(pattern != null ? pattern
: (arguments.length > 0 ? arguments.removeAt(0) : '.'));
« no previous file with comments | « no previous file | lib/web_ui.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698