Skip to content

Commit 3fe513f

Browse files
committed
Fix test_compute_gramian_matrix_input_2
1 parent 4aae544 commit 3fe513f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/linalg/test_gramian.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_compute_gramian_matrix_input_1():
7474
def test_compute_gramian_matrix_input_2():
7575
t = tensor_([[1.0, 2.0], [3.0, 4.0]])
7676
gramian = compute_gramian(t, contracted_dims=2)
77-
expected = tensor_(29.0)
77+
expected = tensor_(30.0)
7878

7979
assert_close(gramian, expected)
8080

0 commit comments

Comments
 (0)