Fixes: https://tracker.ceph.com/issues/52722
```
TestCheckHost.test_container_engine fails at cephadm:5834: Error cephadm.Error: No time synchronization is active
```
Signed-off-by: Sebastian Wagner <sewagner@redhat.com>
(cherry picked from commit
fc9d9b39144fd16f2b2a9621f80dcd1162459000)
class TestCheckHost:
@mock.patch('cephadm.find_executable', return_value='foo')
- def test_container_engine(self, find_executable):
+ @mock.patch('cephadm.check_time_sync', return_value=True)
+ def test_container_engine(self, find_executable, check_time_sync):
ctx = cd.CephadmContext()
ctx.container_engine = None