Fix broken URL links (#554)

This commit is contained in:
Roberto Schiavone
2023-06-14 11:41:28 +02:00
committed by GitHub
parent d5b2779d38
commit a8eaff357c
5 changed files with 13 additions and 13 deletions

View File

@@ -244,15 +244,15 @@ def test_check_reset_options():
[
[
"Error",
"The environment must inherit from the gymnasium.Env class. See https://gymnasium.farama.org/content/environment_creation/ for more info.",
"The environment must inherit from the gymnasium.Env class. See https://gymnasium.farama.org/tutorials/gymnasium_basics/environment_creation/ for more info.",
],
[
GenericTestEnv(action_space=None),
"The environment must specify an action space. See https://gymnasium.farama.org/content/environment_creation/ for more info.",
"The environment must specify an action space. See https://gymnasium.farama.org/tutorials/gymnasium_basics/environment_creation/ for more info.",
],
[
GenericTestEnv(observation_space=None),
"The environment must specify an observation space. See https://gymnasium.farama.org/content/environment_creation/ for more info.",
"The environment must specify an observation space. See https://gymnasium.farama.org/tutorials/gymnasium_basics/environment_creation/ for more info.",
],
],
)