Skip to content

Commit 5acca07

Browse files
Rename tests -> test
1 parent 8c23692 commit 5acca07

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/statespace/models/test_ETS.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def data():
1818
return load_nile_test_data()
1919

2020

21-
def tests_invalid_order_raises():
21+
def test_invalid_order_raises():
2222
# Order must be length 3
2323
with pytest.raises(ValueError, match="Order must be a tuple of three strings"):
2424
BayesianETS(order=("A", "N"))
@@ -89,7 +89,7 @@ def test_order_flags(order, expected_flags):
8989
assert getattr(mod, key) == value
9090

9191

92-
def tests_mode_argument():
92+
def test_mode_argument():
9393
# Mode argument should be passed to the parent class
9494
mod = BayesianETS(order=("A", "N", "N"), mode="FAST_RUN")
9595
assert mod.mode == "FAST_RUN"

tests/statespace/models/test_SARIMAX.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def pymc_mod_interp(arima_mod_interp):
217217
return pymc_mod
218218

219219

220-
def tests_mode_argument():
220+
def test_mode_argument():
221221
# Mode argument should be passed to the parent class
222222
mod = BayesianSARIMA(order=(0, 0, 3), mode="FAST_RUN", verbose=False)
223223
assert mod.mode == "FAST_RUN"

tests/statespace/models/test_VARMAX.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def idata(pymc_mod, rng):
7777
return idata
7878

7979

80-
def tests_mode_argument():
80+
def test_mode_argument():
8181
# Mode argument should be passed to the parent class
8282
mod = BayesianVARMAX(k_endog=2, order=(3, 0), mode="FAST_RUN", verbose=False)
8383
assert mod.mode == "FAST_RUN"

0 commit comments

Comments
 (0)