Fix: tests: print real values in a fixed format
[babeltrace.git] / tests / utils / python / cli_params_to_string.py
index 90d61ffdc5e75dde47a63de4fb711324df40ae02..4ff24987a4e672953e885430fe0e0c2c53bdfe4d 100644 (file)
@@ -19,12 +19,13 @@ def to_string(p):
         )
     elif type(p) is bt2._UnsignedIntegerValueConst:
         s = str(p) + "u"
+    elif type(p) is bt2._RealValueConst:
+        s = "{:.7f}".format(float(p))
     elif (
         type(p)
         in (
             bt2._StringValueConst,
             bt2._SignedIntegerValueConst,
-            bt2._RealValueConst,
             bt2._BoolValueConst,
         )
         or p is None
This page took 0.022574 seconds and 4 git commands to generate.