From 71f0624c1a17b20490b500b4cf17df1460f61924 Mon Sep 17 00:00:00 2001 From: Misha Lvovsky Date: Fri, 19 Jan 2024 10:59:26 -0500 Subject: [PATCH] update name and comment for very simple multiprocessing pointmaze test --- tests/envs/maze/test_point_maze.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/envs/maze/test_point_maze.py b/tests/envs/maze/test_point_maze.py index cdb8ec30..d9dadc99 100644 --- a/tests/envs/maze/test_point_maze.py +++ b/tests/envs/maze/test_point_maze.py @@ -41,8 +41,8 @@ def test_goal_cell(): np.testing.assert_almost_equal(desired_goal, obs["desired_goal"], decimal=4) -def test_multiprocessing(): - """Check that the environment can be used in a multiprocessing environment.""" +def test_multiprocessing_not_crash(): + """Check that the environment does not crash in a multiprocessing environment.""" import multiprocessing as mp def run_env():