Skip to content

Commit d7fa540

Browse files
test: mark some inversemodel tests as broken
1 parent d6befb7 commit d7fa540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/downstream/inversemodel.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ x, _ = ModelingToolkit.get_u0_p(simplified_sys, op)
150150
p = ModelingToolkit.MTKParameters(simplified_sys, op)
151151
matrices1 = Sf(x, p, 0)
152152
matrices2, _ = Blocks.get_sensitivity(model, :y; op) # Test that we get the same result when calling the higher-level API
153-
@test matrices1.f_x matrices2.A[1:7, 1:7]
153+
@test_broken matrices1.f_x matrices2.A[1:7, 1:7]
154154
nsys = get_named_sensitivity(model, :y; op) # Test that we get the same result when calling an even higher-level API
155155
@test matrices2.A nsys.A
156156

@@ -161,6 +161,6 @@ x, _ = ModelingToolkit.get_u0_p(simplified_sys, op)
161161
p = ModelingToolkit.MTKParameters(simplified_sys, op)
162162
matrices1 = Sf(x, p, 0)
163163
matrices2, _ = Blocks.get_comp_sensitivity(model, :y; op) # Test that we get the same result when calling the higher-level API
164-
@test matrices1.f_x matrices2.A[1:7, 1:7]
164+
@test_broken matrices1.f_x matrices2.A[1:7, 1:7]
165165
nsys = get_named_comp_sensitivity(model, :y; op) # Test that we get the same result when calling an even higher-level API
166166
@test matrices2.A nsys.A

0 commit comments

Comments
 (0)