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>
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