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

Unified Diff: pkg/unittest/lib/html_layout_config.dart

Issue 12452004: pkg/unittest: locking down TestCase (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed up unneeded getter/setter def, too Created 7 years, 9 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 | « no previous file | pkg/unittest/lib/interactive_html_config.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/html_layout_config.dart
diff --git a/pkg/unittest/lib/html_layout_config.dart b/pkg/unittest/lib/html_layout_config.dart
index 0a0a94143aa76dbb96f430bc4ebb6c3d98882129..ddb0415df75943fb398f2348a3eebb682d6f3da7 100644
--- a/pkg/unittest/lib/html_layout_config.dart
+++ b/pkg/unittest/lib/html_layout_config.dart
@@ -241,7 +241,7 @@ class ParentHtmlConfiguration extends Configuration {
if (!_doneWrap) {
_doneWrap = true;
for (int i = 0; i < testCases.length; i++) {
- testCases[i].test = wrapTest(testCases[i]);
+ testCases[i].testFunction = wrapTest(testCases[i]);
testCases[i].setUp = null;
testCases[i].tearDown = null;
}
« no previous file with comments | « no previous file | pkg/unittest/lib/interactive_html_config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698