Opened 8 years ago
Last modified 5 years ago
#16536 closed defect
dojo/tests/json.js — at Version 1
Reported by: | mm | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.11 |
Component: | Core | Version: | 1.8.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
function simpleNumber(t){ t.is(3.3, JSON.parse('{"foo":3.3}', true).foo); }, function strictNumber(t){ t.is(3.3, JSON.parse('{"foo":3.3}', true).foo); },
I expect the simpleNumber was ment to be without "true", otherwise we have two same tests. function simpleNumber(t){ t.is(3.3, JSON.parse('{"foo":3.3}').foo); },
Note: See
TracTickets for help on using
tickets.