Skip to content

Commit 9a3bcdc

Browse files
committed
Update dacycler base test with in_4d and uses_ensemble as class attributes
1 parent 0e9cde0 commit 9a3bcdc

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/dacycler_base_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ def test_dacycler_init():
99

1010
params = {'system_dim': 6,
1111
'delta_t': 0.5,
12-
'ensemble': True,
1312
'model_obj':dab.model.RCModel(6, 10)}
1413

1514
test_dac = dab.dacycler.DACycler(**params)
1615

1716
assert test_dac.system_dim == 6
1817
assert test_dac.delta_t == 0.5
1918
assert test_dac.ensemble
20-
assert not test_dac.in_4d
19+
assert not test_dac._in_4d

0 commit comments

Comments
 (0)