From 134f2bd64c4c66e5c88bfcdec5c280b4d110d30a Mon Sep 17 00:00:00 2001 From: Peter Zhokhov Date: Fri, 1 Mar 2019 15:00:22 -0800 Subject: [PATCH] add multibinary to test_spaces --- gym/spaces/tests/test_spaces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gym/spaces/tests/test_spaces.py b/gym/spaces/tests/test_spaces.py index a0f8f7179..baae348ef 100644 --- a/gym/spaces/tests/test_spaces.py +++ b/gym/spaces/tests/test_spaces.py @@ -13,6 +13,7 @@ from gym.spaces import Tuple, Box, Discrete, MultiDiscrete, MultiBinary, Dict Tuple([Discrete(5), Box(low=np.array([0, 0]), high=np.array([1, 5]), dtype=np.float32)]), Tuple((Discrete(5), Discrete(2), Discrete(2))), MultiDiscrete([2, 2, 100]), + MultiBinary(10), Dict({"position": Discrete(5), "velocity": Box(low=np.array([0, 0]), high=np.array([1, 5]), dtype=np.float32)}), ])