From da64899d595a433ea1cd14aeee7e5ccaf26b3d91 Mon Sep 17 00:00:00 2001 From: rhandal-pfn Date: Wed, 28 Aug 2024 16:47:39 +0900 Subject: [PATCH] lint fix --- tests/stochastic/test_jump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stochastic/test_jump.py b/tests/stochastic/test_jump.py index 737b2c14..d3b8cf6c 100644 --- a/tests/stochastic/test_jump.py +++ b/tests/stochastic/test_jump.py @@ -311,7 +311,7 @@ def test_kou_jump_mean_up(self): jump_mean_up = 1.1 with ( pytest.raises( - ValueError,match="jump_mean_up must be postive and smaller than 1" + ValueError, match="jump_mean_up must be postive and smaller than 1" ) ): generate_kou_jump(n_paths, n_steps, jump_mean_up=jump_mean_up)