Skip to content

Commit 60f8b6c

Browse files
committed
fix syntax error in test
1 parent 8fd02c9 commit 60f8b6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/integration/regression.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ LearnAPI.minimize(model::RidgeFitted) =
104104
Ridge,
105105
constructor = Ridge,
106106
kinds_of_proxy = (Point(),),
107-
tags = ("regression",)
107+
tags = ("regression",),
108108
functions = (
109109
:(LearnAPI.fit),
110110
:(LearnAPI.algorithm),
@@ -237,7 +237,7 @@ LearnAPI.minimize(model::BabyRidgeFitted) =
237237
BabyRidge,
238238
constructor = BabyRidge,
239239
kinds_of_proxy = (Point(),),
240-
tags = ("regression",)
240+
tags = ("regression",),
241241
functions = (
242242
:(LearnAPI.fit),
243243
:(LearnAPI.algorithm),

test/integration/static_algorithms.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ end
3939
@trait(
4040
Selector,
4141
constructor = Selector,
42-
tags = ("feature engineering",)
42+
tags = ("feature engineering",),
4343
functions = (
4444
:(LearnAPI.fit),
4545
:(LearnAPI.algorithm),
@@ -105,7 +105,7 @@ end
105105
Selector2,
106106
constructor = Selector2,
107107
predict_or_transform_mutates = true,
108-
tags = ("feature engineering",)
108+
tags = ("feature engineering",),
109109
functions = (
110110
:(LearnAPI.fit),
111111
:(LearnAPI.algorithm),

0 commit comments

Comments
 (0)