Skip to content

Commit fbc9355

Browse files
committed
sd -> sigma in pymc3/tests/test_models_linear.py::TestGLM
1 parent 6169b5b commit fbc9355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_models_linear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def setup_class(cls):
3333
super().setup_class()
3434
cls.intercept = 1
3535
cls.slope = 3
36-
cls.sd = 0.05
36+
cls.sigma = 0.05
3737
x_linear, cls.y_linear = generate_data(cls.intercept, cls.slope, size=1000)
3838
cls.y_linear += np.random.normal(size=1000, scale=cls.sd)
3939
cls.data_linear = dict(x=x_linear, y=cls.y_linear)

0 commit comments

Comments
 (0)