From: John Mulligan Date: Sat, 7 May 2022 14:42:02 +0000 (-0400) Subject: mgr/nfs: autopep8 updates X-Git-Tag: v18.1.0~491^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=55db320d2eaa12eaa485f4227da21460813eb6bb;p=ceph-ci.git mgr/nfs: autopep8 updates These formatting changes are made by autopep8 when running tox. Signed-off-by: John Mulligan --- diff --git a/src/pybind/mgr/nfs/tests/test_nfs.py b/src/pybind/mgr/nfs/tests/test_nfs.py index 2f57b85e18d..1e9d3d4fb02 100644 --- a/src/pybind/mgr/nfs/tests/test_nfs.py +++ b/src/pybind/mgr/nfs/tests/test_nfs.py @@ -241,7 +241,7 @@ EXPORT { return OrchResult([]) with mock.patch('nfs.module.Module.describe_service', mock_describe_service) as describe_service, \ - mock.patch('nfs.module.Module.list_daemons', mock_list_daemons) as list_daemons, \ + mock.patch('nfs.module.Module.list_daemons', mock_list_daemons) as list_daemons, \ mock.patch('nfs.module.Module.rados') as rados, \ mock.patch('nfs.export.available_clusters', return_value=[self.cluster_id]), \ @@ -992,7 +992,7 @@ NFS_CORE_PARAM { assert export.clients[0].access_type == 'rw' assert export.clients[0].addresses == ["192.168.0.0/16"] assert export.cluster_id == self.cluster_id - + def test_create_export_rgw_user(self): self._do_mock_test(self._do_test_create_export_rgw_user) @@ -1034,7 +1034,7 @@ NFS_CORE_PARAM { assert export.clients[0].access_type == 'rw' assert export.clients[0].addresses == ["192.168.0.0/16"] assert export.cluster_id == self.cluster_id - + def test_create_export_cephfs(self): self._do_mock_test(self._do_test_create_export_cephfs)