From e40df0a661034415df6bb2bd2e55c0bf59ae619d Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Wed, 3 Jul 2019 22:56:19 +0200 Subject: [PATCH] Remove stale comment in IOR check --- cscs-checks/system/io/ior_check.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cscs-checks/system/io/ior_check.py b/cscs-checks/system/io/ior_check.py index 4abdda5d9d..534a7144c8 100644 --- a/cscs-checks/system/io/ior_check.py +++ b/cscs-checks/system/io/ior_check.py @@ -132,7 +132,6 @@ def __init__(self, base_dir): r'^Max Write:\s+(?P\S+) MiB/sec', self.stdout, 'write_bw', float) } - # Convert from MiB/s to bytes/s self.tags |= {'write'} @@ -152,5 +151,4 @@ def __init__(self, base_dir): r'^Max Read:\s+(?P\S+) MiB/sec', self.stdout, 'read_bw', float) } - # Convert from MiB/s to bytes/s self.tags |= {'read'}