From 0cfd525ab8c2a1a5c4c4ef1c05ec14119f1d6a39 Mon Sep 17 00:00:00 2001 From: Nick Todd Date: Fri, 15 Dec 2023 10:14:35 +0000 Subject: [PATCH] 2041: change comparison operator in test --- tests/integration_tests/system/test_ntp_client_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/system/test_ntp_client_server.py b/tests/integration_tests/system/test_ntp_client_server.py index d58e3372..f626322f 100644 --- a/tests/integration_tests/system/test_ntp_client_server.py +++ b/tests/integration_tests/system/test_ntp_client_server.py @@ -60,7 +60,7 @@ def test_ntp_client_server(create_ntp_network): sleep(0.1) ntp_client.apply_timestep(1) # Check time advances second_time = ntp_client.time - assert first_time != second_time + assert first_time < second_time # Test ntp client behaviour when ntp server is unavailable.