Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ const LC = LinearCovarianceModels

D = generic_diagonal(6, 3)
@test dim(D) == 3
@test_throws ArgumentError generic_diagonal(6, 0)
@test_throws Union{ArgumentError,MethodError} generic_diagonal(6, 0)
@test_throws ArgumentError generic_diagonal(6, 7)

D = generic_subspace(6, 4)
@test dim(D) == 4
@test_throws ArgumentError generic_subspace(6, binomial(6+1,2)+1)
@test_throws ArgumentError generic_subspace(6, 0)
@test_throws Union{ArgumentError,MethodError} generic_subspace(6, 0)

# @test_throws ArgumentError LCModel(toeplitz(3).Σ .^2)

Expand Down