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

Unified Diff: mojo/apps/js/bindings/sample_service_unittests.js

Issue 291173010: Mojo: Mojom: Remove support for octal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | mojo/public/cpp/bindings/tests/sample_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/apps/js/bindings/sample_service_unittests.js
diff --git a/mojo/apps/js/bindings/sample_service_unittests.js b/mojo/apps/js/bindings/sample_service_unittests.js
index b61f5974fdb423cc06c0ed73f198c45dc593a143..83527b27083e49c4effae02649ea1297464bbc6c 100644
--- a/mojo/apps/js/bindings/sample_service_unittests.js
+++ b/mojo/apps/js/bindings/sample_service_unittests.js
@@ -112,18 +112,15 @@ define([
// expect(full.a7).toBe(9999999999999999999);
expect(full.a8).toBe(0x12345);
expect(full.a9).toBe(-0x12345);
- // TODO(vtl): crbug.com/375829
- // expect(full.a10).toBe(8);
- // expect(full.a11).toBe(-8);
- expect(full.a12).toBe(1234);
- expect(full.a13).toBe(true);
- expect(full.a14).toBe(false);
- expect(full.a15).toBe(123.25);
- expect(full.a16).toBe(1234567890.123);
- expect(full.a17).toBe(1E10);
- expect(full.a18).toBe(-1.2E+20);
- expect(full.a19).toBe(1.23E-20);
- expect(full.a20).toBeNull();
+ expect(full.a10).toBe(1234);
+ expect(full.a11).toBe(true);
+ expect(full.a12).toBe(false);
+ expect(full.a13).toBe(123.25);
+ expect(full.a14).toBe(1234567890.123);
+ expect(full.a15).toBe(1E10);
+ expect(full.a16).toBe(-1.2E+20);
+ expect(full.a17).toBe(1.23E-20);
+ expect(full.a18).toBeNull();
// TODO(vtl): crbug.com/375845
// expect(full.a21).toBeNull();
// expect(full.a22).toBeNull();
« no previous file with comments | « no previous file | mojo/public/cpp/bindings/tests/sample_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698