Skip to content

Commit

Permalink
mgr/dashboard: Fix issue in test: delay lower than expected
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Seidensal <pseidensal@suse.com>
  • Loading branch information
p-se committed Sep 14, 2020
1 parent 0c0e6ee commit 746bac2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,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);
});
});
});

0 comments on commit 746bac2

Please sign in to comment.