##// 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 194 "chainid": 1,
195 195 "chainlen": 1,
196 "chainratio": 1.02325581395,
196 "chainratio": 1.02325581395, (no-py3k !)
197 "chainratio": 1.0232558139534884, (py3k !)
197 198 "chainsize": 44,
198 199 "compsize": 44,
199 200 "deltatype": "base",
@@ -221,7 +222,8 b' debugdelta chain basic output'
221 222 {
222 223 "chainid": 3,
223 224 "chainlen": 1,
224 "chainratio": 1.02325581395,
225 "chainratio": 1.02325581395, (no-py3k !)
226 "chainratio": 1.0232558139534884, (py3k !)
225 227 "chainsize": 44,
226 228 "compsize": 44,
227 229 "deltatype": "base",
@@ -256,7 +258,8 b' debugdelta chain with sparse read enable'
256 258 {
257 259 "chainid": 1,
258 260 "chainlen": 1,
259 "chainratio": 1.02325581395,
261 "chainratio": 1.02325581395, (no-py3k !)
262 "chainratio": 1.0232558139534884, (py3k !)
260 263 "chainsize": 44,
261 264 "compsize": 44,
262 265 "deltatype": "base",
@@ -292,7 +295,8 b' debugdelta chain with sparse read enable'
292 295 {
293 296 "chainid": 3,
294 297 "chainlen": 1,
295 "chainratio": 1.02325581395,
298 "chainratio": 1.02325581395, (no-py3k !)
299 "chainratio": 1.0232558139534884, (py3k !)
296 300 "chainsize": 44,
297 301 "compsize": 44,
298 302 "deltatype": "base",
General Comments 0
You need to be logged in to leave comments. Login now