Skip to content

Commit e459b2c

Browse files
Max Andriychukvgvassilev
authored andcommitted
Fix failing test introduced in #1360
1 parent 734c2f7 commit e459b2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Jacobian/Jacobian.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,9 @@ void f_10(float a, double output[]){
217217
// CHECK-NEXT: unsigned long indepVarCount = _d_vector_output->rows() + 1UL;
218218
// CHECK-NEXT: clad::array<float> _d_vector_a = clad::one_hot_vector(indepVarCount, 0UL);
219219
// CHECK-NEXT: *_d_vector_output = clad::identity_matrix(_d_vector_output->rows(), indepVarCount, 1UL);
220-
// CHECK-NEXT: *_d_vector_output[0] = _d_vector_a * a + a * _d_vector_a;
220+
// CHECK-NEXT: (*_d_vector_output)[0] = _d_vector_a * a + a * _d_vector_a;
221221
// CHECK-NEXT: output[0] = a * a;
222-
// CHECK-NEXT: *_d_vector_output[1] = *_d_vector_output[0];
222+
// CHECK-NEXT: (*_d_vector_output)[1] = (*_d_vector_output)[0];
223223
// CHECK-NEXT: output[1] = output[0];
224224
// CHECK-NEXT:}
225225

0 commit comments

Comments
 (0)