summaryrefslogtreecommitdiff
path: root/test-cli/test/tests/qwifi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/tests/qwifi.py')
-rw-r--r--test-cli/test/tests/qwifi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-cli/test/tests/qwifi.py b/test-cli/test/tests/qwifi.py
index 0944dd7..a5b66e9 100644
--- a/test-cli/test/tests/qwifi.py
+++ b/test-cli/test/tests/qwifi.py
@@ -62,7 +62,7 @@ class Qwifi(unittest.TestCase):
self.__bwreal = float(data['end']['sum_received']['bits_per_second']) / 1024 / 1024
# save result file
with open('/tmp/wifi-iperf.json', 'w') as outfile:
- json.dump(data, outfile)
+ json.dump(data, outfile, indent=4)
# check if BW is in the expected range
self.failUnless(self.__bwreal > float(self.__bwexpected) * 0.9,