We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d17e17 commit 385f290Copy full SHA for 385f290
tests/storage/benchmarks/test_disk_perf.py
@@ -11,7 +11,7 @@
11
12
# Tests default settings #
13
14
-CSV_FILE = f"/tmp/results_{datetime.now().strftime("%Y-%m-%d_%H:%M:%S")}.csv"
+CSV_FILE = f"/tmp/results_{datetime.now().strftime('%Y-%m-%d_%H:%M:%S')}.csv"
15
16
DEFAULT_SAMPLES_NUM = 10
17
DEFAULT_SIZE = "1G"
@@ -116,7 +116,7 @@ def test_disk_benchmark(
116
):
117
vm = running_unix_vm_with_fio
118
vbd = plugged_vbd
119
- device = f"/dev/{vbd.param_get(param_name="device")}"
+ device = f"/dev/{vbd.param_get(param_name='device')}"
120
test_type = "{}-{}-{}-{}".format(
121
block_size,
122
file_size,
0 commit comments