Skip to content

Commit 4d41ddc

Browse files
committed
typo
1 parent e02bf36 commit 4d41ddc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ControlSystemsBase/test/test_statespace.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
@test C_111 .* C_222 == ss([-5 0 2 0; 0 -5 0 2; 0 0 -5 -3; 0 0 2 -9], [0 0; 0 0; 1 0; 0 2], [3 0 0 0; 0 3 0 0], 0)
9999
@test Ref(ss(1)) .* [C_111, C_111] == [C_111, C_111]
100100

101-
if version >= v"1.10.0-rc2"
101+
if VERSION >= v"1.10.0-rc1"
102102
@inferred C_111 * C_221
103103
else
104104
@test_broken @inferred C_111 * C_221

lib/ControlSystemsBase/test/test_transferfunction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ tf(vecarray(1, 2, [0], [0]), vecarray(1, 2, [1], [1]), 0.005)
103103
@test minreal(C_111.*C_222 - C_222.*C_111, 1e-3) == tf(ss(0*I(2))) # scalar times MIMO
104104
@test C_111 .* C_222 == (C_111 .* I(2)) * C_222
105105

106-
if version >= v"1.10.0-rc2"
106+
if VERSION >= v"1.10.0-rc1"
107107
@inferred C_111 .* I(2)
108108
else
109109
@test_broken @inferred C_111 .* I(2)

0 commit comments

Comments
 (0)