Skip to content

Commit 6ca4d10

Browse files
committed
wip
1 parent 5a9e770 commit 6ca4d10

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

test/runtests.jl

+7-4
Original file line numberDiff line numberDiff line change
@@ -1292,12 +1292,15 @@ end
12921292
@components begin
12931293
world = W()
12941294
cyl = Cylindrical(n = [0, 1, 0])
1295-
spring = Spring(c = 1)
1296-
body = Body(state_priority=1)
1295+
# spring = Spring(c = 1)
1296+
body = Body(state_priority=0)
12971297
end
12981298
@equations begin
1299-
connect(world.frame_b, cyl.frame_a, spring.frame_a)
1300-
connect(cyl.frame_b, spring.frame_b, body.frame_a)
1299+
# connect(world.frame_b, cyl.frame_a, spring.frame_a)
1300+
# connect(cyl.frame_b, spring.frame_b, body.frame_a)
1301+
1302+
connect(world.frame_b, cyl.frame_a)
1303+
connect(cyl.frame_b, body.frame_a)
13011304
end
13021305
end
13031306
@named model = CylinderTest()

0 commit comments

Comments
 (0)