Skip to content

Commit

Permalink
Update test_linear.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ndem0 authored Nov 15, 2023
1 parent 58cd332 commit 1b6ac68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_linear.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_with_db_predict(self):
db = Database(np.array([1, 2, 3]), Y)
rom = ReducedOrderModel(db, POD(), Linear())
rom.fit()
assert rom.predict([1.]).shape == 3
assert rom.predict([1.]).shape == (3,)


def test_wrong1(self):
Expand Down

0 comments on commit 1b6ac68

Please sign in to comment.