Skip to content

Commit 7ef9d89

Browse files
committed
adapt a test for out_dim->outdim change
1 parent eb56a6b commit 7ef9d89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/models/discriminant_analysis.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ y1 = y[[1,1,1,1]]
183183
## than unique classes during training.
184184
@test_throws ArgumentError fit(model, 1, X, y)
185185

186-
## Check to make sure error is thrown if `out_dim` exceeds the number of features in
186+
## Check to make sure error is thrown if `outdim` exceeds the number of features in
187187
## sample matrix used in training.
188-
model = LDA(out_dim=3)
188+
model = LDA(outdim=3)
189189
# categorical array with same pool as y but only containing "apples" & "oranges"
190190
y2 = y[[1,2,1,2]]
191191
@test_throws ArgumentError fit(model, 1, X, y2)

0 commit comments

Comments
 (0)