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

Unified Diff: tests/html/element_animate_test.dart

Issue 1761973002: Updated status file changes for Dartium sdk/lib generated from 45 IDLs (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Updated Dartium sdk/lib regen'd from 45 IDLs Created 4 years, 10 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 | « tests/co19/co19-dartium.status ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/element_animate_test.dart
diff --git a/tests/html/element_animate_test.dart b/tests/html/element_animate_test.dart
index 31becda7d9cdd3720539fdd319efcb5a258b4319..10477c9bc2ee4f8097558630850affe846bc7e42 100644
--- a/tests/html/element_animate_test.dart
+++ b/tests/html/element_animate_test.dart
@@ -14,7 +14,7 @@ main() {
group('animate_supported', () {
test('supported', () {
- expect(AnimationPlayer.supported, true);
+ expect(Animation.supported, isTrue);
});
});
@@ -24,7 +24,7 @@ main() {
var opacity = num.parse(body.getComputedStyle().opacity);
body.animate([{"opacity": 100}, {"opacity": 0}], 100);
var newOpacity = num.parse(body.getComputedStyle().opacity);
- expect(newOpacity < opacity, isTrue);
+ expect(newOpacity == opacity, isTrue);
});
});
« no previous file with comments | « tests/co19/co19-dartium.status ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698