##// END OF EJS Templates
py3: conditionalize json float precision difference in test-debugcommands.t
Matt Harbison -
r39938:8d6ab33a default
parent child Browse files
Show More
@@ -193,7 +193,8 b' debugdelta chain basic output'
193 {
193 {
194 "chainid": 1,
194 "chainid": 1,
195 "chainlen": 1,
195 "chainlen": 1,
196 "chainratio": 1.02325581395,
196 "chainratio": 1.02325581395, (no-py3k !)
197 "chainratio": 1.0232558139534884, (py3k !)
197 "chainsize": 44,
198 "chainsize": 44,
198 "compsize": 44,
199 "compsize": 44,
199 "deltatype": "base",
200 "deltatype": "base",
@@ -221,7 +222,8 b' debugdelta chain basic output'
221 {
222 {
222 "chainid": 3,
223 "chainid": 3,
223 "chainlen": 1,
224 "chainlen": 1,
224 "chainratio": 1.02325581395,
225 "chainratio": 1.02325581395, (no-py3k !)
226 "chainratio": 1.0232558139534884, (py3k !)
225 "chainsize": 44,
227 "chainsize": 44,
226 "compsize": 44,
228 "compsize": 44,
227 "deltatype": "base",
229 "deltatype": "base",
@@ -256,7 +258,8 b' debugdelta chain with sparse read enable'
256 {
258 {
257 "chainid": 1,
259 "chainid": 1,
258 "chainlen": 1,
260 "chainlen": 1,
259 "chainratio": 1.02325581395,
261 "chainratio": 1.02325581395, (no-py3k !)
262 "chainratio": 1.0232558139534884, (py3k !)
260 "chainsize": 44,
263 "chainsize": 44,
261 "compsize": 44,
264 "compsize": 44,
262 "deltatype": "base",
265 "deltatype": "base",
@@ -292,7 +295,8 b' debugdelta chain with sparse read enable'
292 {
295 {
293 "chainid": 3,
296 "chainid": 3,
294 "chainlen": 1,
297 "chainlen": 1,
295 "chainratio": 1.02325581395,
298 "chainratio": 1.02325581395, (no-py3k !)
299 "chainratio": 1.0232558139534884, (py3k !)
296 "chainsize": 44,
300 "chainsize": 44,
297 "compsize": 44,
301 "compsize": 44,
298 "deltatype": "base",
302 "deltatype": "base",
General Comments 0
You need to be logged in to leave comments. Login now