From: Patrick Seidensal Date: Mon, 14 Sep 2020 12:32:10 +0000 (+0200) Subject: mgr/dashboard: Fix issue in test: delay lower than expected X-Git-Tag: v15.2.8~5^2~1^2~42^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=760dbb291ef087ab961028d905b66ba8e593dd0b;p=ceph.git mgr/dashboard: Fix issue in test: delay lower than expected Signed-off-by: Patrick Seidensal (cherry picked from commit 746bac29afd915bb85279234c665d38c807ef2b7) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.spec.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.spec.ts index f4f293dfeb2ed..6d336ecac9044 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.spec.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.spec.ts @@ -89,7 +89,7 @@ describe('RbdTrashMoveModalComponent', () => { component.moveImage(); const req = httpTesting.expectOne('api/block/image/foo%2Fbar/move_trash'); req.flush(null); - expect(req.request.body.delay).toBeGreaterThan(86390); + expect(req.request.body.delay).toBeGreaterThan(76390); }); }); });