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

Unified Diff: tests/html/dromaeo_smoke_test.dart

Issue 12793003: Rename Timer.repeating to Timer.periodic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: tests/html/dromaeo_smoke_test.dart
diff --git a/tests/html/dromaeo_smoke_test.dart b/tests/html/dromaeo_smoke_test.dart
index 0463eff59fe8ec1816b62d2c10251f60c314c455..fd92124c67c5866813f8305587f3875a3405298c 100644
--- a/tests/html/dromaeo_smoke_test.dart
+++ b/tests/html/dromaeo_smoke_test.dart
@@ -45,8 +45,8 @@ void main() {
originalTest.main();
test('dromaeo runs', () {
- new Timer.repeating(new Duration(milliseconds: 500),
- expectAsyncUntil1((timer) {
+ new Timer.periodic(new Duration(milliseconds: 500),
+ expectAsyncUntil1((timer) {
if (document.query('.alldone') != null) {
timer.cancel();
isDone = true;

Powered by Google App Engine
This is Rietveld 408576698