Update URL links and Space documentation summaries (#18)

This commit is contained in:
Manuel Goulão
2022-09-16 14:00:12 +01:00
committed by GitHub
parent 4d61477b7c
commit 2f8002f2bd
13 changed files with 125 additions and 86 deletions

View File

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