From e251341711c93319d95de214204c7d42f31fa732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Thu, 1 Jun 2017 12:11:48 +0200 Subject: [PATCH] fix tpo --- tests/test_ntp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ntp.py b/tests/test_ntp.py index 69dd76c7..25f6fe3f 100755 --- a/tests/test_ntp.py +++ b/tests/test_ntp.py @@ -44,7 +44,7 @@ if os.path.isfile('../utils.py'): for l in d.split('\n'): if l.startswith(ntpconf_expected): servers.append(l.split(ntpconf_expected)[1]) - if not '%s%s' % (nfpconf_expected, NTP_SERVER) in d: + if not '%s%s' % (ntpconf_expected, NTP_SERVER) in d: print('Expected NTP server %s not found in %s, found %s instead' % (NTP_SERVER, ntpconf, servers)) sys.exit(1) else: -- GitLab