Skip to content

Commit

Permalink
Minor change in test for nesting of VectorEnvs
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <fabrice.normandin@gmail.com>
  • Loading branch information
lebrice committed Aug 3, 2021
1 parent 6795186 commit 53772da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gym/vector/tests/test_vector_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_nesting_vector_envs(base_env: str,

env = outer_vector_wrapper([ # type: ignore
partial(inner_vector_wrapper, [
make_env(base_env, inner_envs * i + j) for j in range(inner_envs)
make_env(base_env, seed=inner_envs * i + j) for j in range(inner_envs)
]) for i in range(outer_envs)
])

Expand Down

0 comments on commit 53772da

Please sign in to comment.