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

Unified Diff: utils/tests/pub/yaml_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « utils/tests/pub/version_solver_test.dart ('k') | utils/tests/string_encoding/benchmark_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/yaml_test.dart
diff --git a/utils/tests/pub/yaml_test.dart b/utils/tests/pub/yaml_test.dart
index 85cbdf81b7142bc93fa5730255672f61670c0785..889923e54d2923102eacb88e82afd4acf1781e9b 100644
--- a/utils/tests/pub/yaml_test.dart
+++ b/utils/tests/pub/yaml_test.dart
@@ -4,8 +4,6 @@
library yaml_test;
-import 'dart:math';
-
import '../../../pkg/unittest/lib/unittest.dart';
import '../../pub/yaml/yaml.dart';
import '../../pub/yaml/deep_equals.dart';
@@ -32,8 +30,8 @@ expectYamlStreamLoads(List expected, String source) {
}
main() {
- var infinity = parseDouble("Infinity");
- var nan = parseDouble("NaN");
+ var infinity = double.parse("Infinity");
+ var nan = double.parse("NaN");
group('YamlMap', () {
group('accepts as a key', () {
« no previous file with comments | « utils/tests/pub/version_solver_test.dart ('k') | utils/tests/string_encoding/benchmark_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698