From 760dbb291ef087ab961028d905b66ba8e593dd0b Mon Sep 17 00:00:00 2001 From: Patrick Seidensal Date: Mon, 14 Sep 2020 14:32:10 +0200 Subject: [PATCH] mgr/dashboard: Fix issue in test: delay lower than expected Signed-off-by: Patrick Seidensal (cherry picked from commit 746bac29afd915bb85279234c665d38c807ef2b7) --- .../rbd-trash-move-modal/rbd-trash-move-modal.component.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); }); }); -- 2.39.5