diff options
Diffstat (limited to 't')
-rw-r--r-- | t/04-Shared_TimeZone.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/04-Shared_TimeZone.t b/t/04-Shared_TimeZone.t index d0d08d2c..1a8782bd 100644 --- a/t/04-Shared_TimeZone.t +++ b/t/04-Shared_TimeZone.t @@ -14,7 +14,7 @@ BEGIN { ok (my $h = $tz->readConfiguration(), 'readConfiguration'); ok (my $s = $tz->ntpCurrentServer(), 'currentNTPServer'); diag "ntpCurrentServer got: < " . ($s ? $s : "none") . " >"; - ok (my $a = ($tz->isNTPRunning() ? "not running" : "running"), 'isNTPRunning'); + ok (my $a = ($tz->isNTPRunning() ? "running" : "not running"), 'isNTPRunning'); diag "isNTPRunning got: < " . $a . " >"; done_testing; |