Skip to content

Commit b5e309b

Browse files
larsgebclaude
andcommitted
Fix seismogram shape assertion in CI smoke test
elastic_wave_propagate returns (n_recv, nt), not (nt, n_recv). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 33096f3 commit b5e309b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
ctx, vp, vs, rho, 25, 10, wvl, rx, rz,
117117
dx=10.0, dz=10.0, dt=1e-3, n_boundary=5
118118
)
119-
assert sv.shape == (20, 3), f"seismogram shape wrong: {sv.shape}"
119+
assert sv.shape == (3, 20), f"seismogram shape wrong: {sv.shape}"
120120
121121
print("All smoke tests passed.")
122122
EOF

0 commit comments

Comments
 (0)