Chromium Code Reviews| Index: tests/isolate/timer_test.dart | 
| =================================================================== | 
| --- tests/isolate/timer_test.dart (revision 14156) | 
| +++ tests/isolate/timer_test.dart (working copy) | 
| @@ -17,7 +17,7 @@ | 
| void timeoutHandler(Timer timer) { | 
| int endTime = (new Date.now()).millisecondsSinceEpoch; | 
| - expect((endTime - startTime) >= timeout); | 
| + expect(endTime - startTime, greaterThanOrEqualTo(timeout)); | 
| if (iteration < ITERATIONS) { | 
| iteration++; | 
| timeout = timeout - DECREASE; |