File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ def __init__(self):
17
17
learn_return = fake_model .learn ("current_state" ,
18
18
"action" , "reward" , "next_state" )
19
19
predict_return = fake_model .predict ("state" )
20
- learning_dict = fake_model .learning_dict
20
+ learning_data = fake_model .learning_data
21
21
22
22
assert isinstance (ModelBase , ABCMeta )
23
23
assert learn_return is None
24
24
assert predict_return is None
25
- assert learning_dict is None
25
+ self . assertEqual ( learning_data , {})
Original file line number Diff line number Diff line change 2
2
3
3
from pysc2 .lib import actions
4
4
5
- from urnai .actions .sc2_action import SC2Action
5
+ from urnai .sc2 . actions .sc2_action import SC2Action
6
6
7
7
_BUILD_REFINERY = actions .RAW_FUNCTIONS .Build_Refinery_pt
8
8
_NO_OP = actions .FUNCTIONS .no_op
You can’t perform that action at this time.
0 commit comments