Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Toni-SM committed Aug 13, 2024
1 parent 25e969a commit a6c1601
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions tests/jax/test_jax_wrapper_gym.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ def test_env(capsys: pytest.CaptureFixture, backend: str):
# check methods
for _ in range(2):
observation, info = env.reset()
with capsys.disabled():
print(observation.shape, type(observation.shape))
assert isinstance(observation, Array) and observation.shape == (num_envs, 3)
assert isinstance(info, Mapping)
for _ in range(3):
Expand Down
2 changes: 0 additions & 2 deletions tests/jax/test_jax_wrapper_gymnasium.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ def test_env(capsys: pytest.CaptureFixture, backend: str):
# check methods
for _ in range(2):
observation, info = env.reset()
with capsys.disabled():
print(observation.shape, type(observation.shape))
assert isinstance(observation, Array) and observation.shape == (num_envs, 3)
assert isinstance(info, Mapping)
for _ in range(3):
Expand Down

0 comments on commit a6c1601

Please sign in to comment.