Skip to content

Commit 15b1495

Browse files
committed
Updated tests pt.3
1 parent ecb079e commit 15b1495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: machine_learning/dimensionality_reduction.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def linear_discriminant_analysis(
164164
def test_linear_discriminant_analysis() -> None:
165165
# Create dummy dataset with 2 classes and 3 features
166166
features = np.array([[1, 2, 3, 4, 5], [2, 3, 4, 5, 6], [3, 4, 5, 6, 7]])
167-
labels = np.array([0, 0, 0, 1, 1])
167+
labels = np.array([0, 2, 0, 1, 1])
168168
classes = 3
169169
dimensions = 2
170170

0 commit comments

Comments
 (0)