Skip to content

Commit 4b77836

Browse files
committed
test: update expected output for distribution_convolution test case
1 parent 9fed40a commit 4b77836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/treetime/src/distribution/distribution_convolution.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ mod tests {
384384
let actual = distribution_convolution(&a, &b).unwrap();
385385

386386
let expected_x = array![0.0, 1.0, 2.0, 3.0];
387-
let expected_y = array![1.0, 2.0, 2.0, 1.0];
387+
let expected_y = array![0.5, 2.0, 2.0, 0.5];
388388
let expected = Distribution::function(expected_x, expected_y).unwrap();
389389

390390
assert_eq!(expected, actual);

0 commit comments

Comments
 (0)