From ecdd039246dad2d17da2527442b78db4c7b06e95 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 18 Feb 2019 15:26:54 +0900 Subject: [PATCH] test-network: update cosmetic workaround Almost all tests call copy_unit_to_networkd_unit_path() at first. So, let's move the line break there. --- test/test-network/systemd-networkd-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 797ba7c..98ff1ba 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -117,6 +117,7 @@ class Utilities(): return f.readline().strip() def copy_unit_to_networkd_unit_path(self, *units): + print() for unit in units: shutil.copy(os.path.join(networkd_ci_path, unit), network_unit_file_path) if (os.path.exists(os.path.join(networkd_ci_path, unit + '.d'))): @@ -172,7 +173,6 @@ class Utilities(): else: subprocess.check_call('systemctl restart systemd-networkd', shell=True) time.sleep(5) - print() class NetworkdNetDevTests(unittest.TestCase, Utilities): -- 2.7.4